diff options
Diffstat (limited to 'testsuite/tests/deriving/should_fail/drvfail007.hs')
-rw-r--r-- | testsuite/tests/deriving/should_fail/drvfail007.hs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testsuite/tests/deriving/should_fail/drvfail007.hs b/testsuite/tests/deriving/should_fail/drvfail007.hs new file mode 100644 index 0000000000..74f9f033d3 --- /dev/null +++ b/testsuite/tests/deriving/should_fail/drvfail007.hs @@ -0,0 +1,4 @@ +-- !!! buggy deriving with function type, reported by Sigbjorn Finne +module ShouldFail where + +data Foo = Foo (Int -> Int) deriving Eq |