summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/indexed-types/should_compile/Simple10.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghc-regress/indexed-types/should_compile/Simple10.hs')
-rw-r--r--testsuite/tests/ghc-regress/indexed-types/should_compile/Simple10.hs10
1 files changed, 0 insertions, 10 deletions
diff --git a/testsuite/tests/ghc-regress/indexed-types/should_compile/Simple10.hs b/testsuite/tests/ghc-regress/indexed-types/should_compile/Simple10.hs
deleted file mode 100644
index 2e6aacf510..0000000000
--- a/testsuite/tests/ghc-regress/indexed-types/should_compile/Simple10.hs
+++ /dev/null
@@ -1,10 +0,0 @@
-{-# LANGUAGE TypeFamilies #-}
-
-module Simple10 where
-
-type family T a
-
-foo, bar :: T a -> a
-foo = undefined
-bar x = foo x
-