summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/simplCore/should_compile/simpl019.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghc-regress/simplCore/should_compile/simpl019.hs')
-rw-r--r--testsuite/tests/ghc-regress/simplCore/should_compile/simpl019.hs14
1 files changed, 0 insertions, 14 deletions
diff --git a/testsuite/tests/ghc-regress/simplCore/should_compile/simpl019.hs b/testsuite/tests/ghc-regress/simplCore/should_compile/simpl019.hs
deleted file mode 100644
index 66b8fc4764..0000000000
--- a/testsuite/tests/ghc-regress/simplCore/should_compile/simpl019.hs
+++ /dev/null
@@ -1,14 +0,0 @@
-{-# LANGUAGE GADTs, FlexibleInstances #-}
-{-# OPTIONS_GHC -O2 #-}
-
--- See Trac #1746
-
-module Foo where
-
-data T a where T :: T a -> T [a]
-
-class C a where
- f :: a -> ()
-
-instance C (T [a]) where
- f (T x@(T _)) = f x