blob: a7653720d68e158be918287a50b535a976fe830f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
:set -XExistentialQuantification -XDeriveDataTypeable -XGeneralizedNewtypeDeriving
:l ../Test
let a = O (id 'a')
let b = O (id "abc")
:p a
:p b
seq _t1 ()
:p _t1
:show bindings
_t2
-- bogus!! _t2 has been resolved to type Char
|