ghc-exactprint-1.9.0.0: tests/examples/pre-ghc910/ghci006.hs
{-# LANGUAGE RankNTypes #-}
module Ghci006 where
data Q = forall x . Show x => Q x
showQ (Q x) = show x
-- associated bug is that at the interpreter command line,
-- showQ (Q "foo") crashed the interpreter.