summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/indexed-types/should_compile/Simple9.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghc-regress/indexed-types/should_compile/Simple9.hs')
-rw-r--r--testsuite/tests/ghc-regress/indexed-types/should_compile/Simple9.hs18
1 files changed, 0 insertions, 18 deletions
diff --git a/testsuite/tests/ghc-regress/indexed-types/should_compile/Simple9.hs b/testsuite/tests/ghc-regress/indexed-types/should_compile/Simple9.hs
deleted file mode 100644
index 4075d4845f..0000000000
--- a/testsuite/tests/ghc-regress/indexed-types/should_compile/Simple9.hs
+++ /dev/null
@@ -1,18 +0,0 @@
-{-# LANGUAGE TypeFamilies #-}
-
-module Simple9 where
-
--- The test succeeds with
---
--- type family F a b
--- type instance F () b = Maybe b
-
-type family F a :: * -> *
-type instance F () = Maybe
-
-type family G a
-type instance G (Maybe a) = Int
-
-foo :: G (F () a) -> Int
-foo x = x
-