[project @ 2001-05-21 14:08:36 by simonmar]
[ghc-hetmet.git] / ghc / tests / ghci / ghci006.hs
1
2 data Q = forall x . Show x => Q x
3 showQ (Q x) = show x
4
5 -- associated bug is that at the interpreter command line,
6 --   showQ (Q "foo") crashed the interpreter.