summaryrefslogtreecommitdiff
path: root/testsuite/tests/linear/should_compile/MultConstructor.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/linear/should_compile/MultConstructor.hs')
-rw-r--r--testsuite/tests/linear/should_compile/MultConstructor.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/linear/should_compile/MultConstructor.hs b/testsuite/tests/linear/should_compile/MultConstructor.hs
index a97eade18e..780c906099 100644
--- a/testsuite/tests/linear/should_compile/MultConstructor.hs
+++ b/testsuite/tests/linear/should_compile/MultConstructor.hs
@@ -3,7 +3,7 @@ module MultConstructor where
import GHC.Types
-data T (p :: Multiplicity) a where
+data T p a where
MkT :: a %p -> T p a
{-