summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/should_run/T14125a.script
blob: 1667349160c15aff0b00a032a1127127739ba89b (plain)
1
2
3
4
5
6
7
8
:set -XTypeFamilies
data family Foo a
data instance Foo Int = FooInt Int
:kind! Foo Int
let f (FooInt i) = i
:info    f
:type +v f
:type    f