summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_fail/tcfail136.hs
blob: 89ba4833b70a0f3abc03a81dc337df2149043bf0 (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   }