summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/typecheck/should_compile/tc171.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghc-regress/typecheck/should_compile/tc171.hs')
-rw-r--r--testsuite/tests/ghc-regress/typecheck/should_compile/tc171.hs12
1 files changed, 0 insertions, 12 deletions
diff --git a/testsuite/tests/ghc-regress/typecheck/should_compile/tc171.hs b/testsuite/tests/ghc-regress/typecheck/should_compile/tc171.hs
deleted file mode 100644
index a77b6f7fc5..0000000000
--- a/testsuite/tests/ghc-regress/typecheck/should_compile/tc171.hs
+++ /dev/null
@@ -1,12 +0,0 @@
-
--- Data types with no constructors
-
-module ShouldCompile where
-
-data S
-data T a
-
-f :: [T a] -> Int
-f xs = length xs
-
-