summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/typecheck/should_fail/tcfail016.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghc-regress/typecheck/should_fail/tcfail016.hs')
-rw-r--r--testsuite/tests/ghc-regress/typecheck/should_fail/tcfail016.hs9
1 files changed, 0 insertions, 9 deletions
diff --git a/testsuite/tests/ghc-regress/typecheck/should_fail/tcfail016.hs b/testsuite/tests/ghc-regress/typecheck/should_fail/tcfail016.hs
deleted file mode 100644
index 2dfd4a50e0..0000000000
--- a/testsuite/tests/ghc-regress/typecheck/should_fail/tcfail016.hs
+++ /dev/null
@@ -1,9 +0,0 @@
-module ShouldFail where
-
-type AnnExpr a = (a,Expr a)
-
-data Expr a = Var [Char]
- | App (AnnExpr a) (AnnExpr a)
-
-g (Var name) = [name]
-g (App e1 e2) = (g e1)++(g e2)