summaryrefslogtreecommitdiff
path: root/testsuite/tests/dependent/should_fail/T13135.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/dependent/should_fail/T13135.hs')
-rw-r--r--testsuite/tests/dependent/should_fail/T13135.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/tests/dependent/should_fail/T13135.hs b/testsuite/tests/dependent/should_fail/T13135.hs
index c39b3f5842..8f78ccbfb1 100644
--- a/testsuite/tests/dependent/should_fail/T13135.hs
+++ b/testsuite/tests/dependent/should_fail/T13135.hs
@@ -8,11 +8,11 @@
{-# LANGUAGE UndecidableInstances #-}
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE PolyKinds #-}
-{-# LANGUAGE TypeInType #-}
{-# LANGUAGE TypeFamilyDependencies #-}
-module T12135 where
+
+module T13135 where
import Data.Kind (Type)
@@ -62,7 +62,7 @@ arrLen = smartSym sym where
-{- The original bug was a familure to subsitute
+{- The original bug was a failure to substitute
properly during type-function improvement.
--------------------------------------