diff options
Diffstat (limited to 'testsuite/tests/ghci.debugger/scripts/print029.hs')
-rw-r--r-- | testsuite/tests/ghci.debugger/scripts/print029.hs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/tests/ghci.debugger/scripts/print029.hs b/testsuite/tests/ghci.debugger/scripts/print029.hs new file mode 100644 index 0000000000..23eb61bb5b --- /dev/null +++ b/testsuite/tests/ghci.debugger/scripts/print029.hs @@ -0,0 +1,7 @@ +newtype MkT2 a = MkT2 [Maybe a] deriving Show + +f :: t Int -> t Int +f x = x + +f2 :: t Int -> t Int -> (t Int, t Int) +f2 x y = (x,y)
\ No newline at end of file |