summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_compile/T12104.hs
blob: 12c309c12f0994516ae790b714792a0640eb17c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
{-# LANGUAGE TypeFamilies, DataKinds, UndecidableInstances #-}

module T12104 where

import GHC.TypeLits

type family F a where
  F a = TypeError (Text "error")

err :: F ()
err = ()