diff options
Diffstat (limited to 'testsuite/tests/ghci/scripts/T6018ghcifail.script')
-rw-r--r-- | testsuite/tests/ghci/scripts/T6018ghcifail.script | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/ghci/scripts/T6018ghcifail.script b/testsuite/tests/ghci/scripts/T6018ghcifail.script index 4a382307db..b8c38cbd58 100644 --- a/testsuite/tests/ghci/scripts/T6018ghcifail.script +++ b/testsuite/tests/ghci/scripts/T6018ghcifail.script @@ -2,10 +2,10 @@ :set -XDataKinds :set -XUndecidableInstances :set -XPolyKinds +import Data.Kind (Type) - -type family F a b c = (result :: *) | result -> a b c +type family F a b c = (result :: Type) | result -> a b c type instance F Int Char Bool = Bool type instance F Char Bool Int = Int type instance F Bool Int Char = Int |