summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/indexed-types/should_compile/Simple7.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghc-regress/indexed-types/should_compile/Simple7.hs')
-rw-r--r--testsuite/tests/ghc-regress/indexed-types/should_compile/Simple7.hs10
1 files changed, 0 insertions, 10 deletions
diff --git a/testsuite/tests/ghc-regress/indexed-types/should_compile/Simple7.hs b/testsuite/tests/ghc-regress/indexed-types/should_compile/Simple7.hs
deleted file mode 100644
index 61ba22117f..0000000000
--- a/testsuite/tests/ghc-regress/indexed-types/should_compile/Simple7.hs
+++ /dev/null
@@ -1,10 +0,0 @@
-{-# LANGUAGE TypeFamilies #-}
-
-module ShouldCompile where
-
-class C1 a where
- data S1 a :: *
-
--- instance of data families can be data or newtypes
-instance C1 Char where
- newtype S1 Char = S1Char ()