summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/typecheck/should_fail/tcfail136.hs
blob: 19989d4a618f694155f3868aec66d6c4b767a236 (plain)
1
2
3
4
5
6
7
8
9
-- Kind error message test

module ShouldFail where

type IntMap a = [a]
 
data SymDict a = SymDict {idcounter:: Int, itot::IntMap a}

data SymTable = SymTable {  dict::SymDict   }