summaryrefslogtreecommitdiff
path: root/testsuite/tests/deriving
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2017-09-27 12:21:33 +0200
committerGabor Greif <ggreif@gmail.com>2017-09-27 12:21:33 +0200
commit4364f1e7543b6803cfaef321105d253e0bdf08a4 (patch)
tree87237f782598bb705f3119a815ad605631175c64 /testsuite/tests/deriving
parent60b06456ddef08bd8a8a47497a6cbefbb5e359fb (diff)
downloadhaskell-4364f1e7543b6803cfaef321105d253e0bdf08a4.tar.gz
Typofixes
Diffstat (limited to 'testsuite/tests/deriving')
-rw-r--r--testsuite/tests/deriving/should_compile/drv-functor1.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/deriving/should_compile/drv-functor1.hs b/testsuite/tests/deriving/should_compile/drv-functor1.hs
index 8249858cae..040d531341 100644
--- a/testsuite/tests/deriving/should_compile/drv-functor1.hs
+++ b/testsuite/tests/deriving/should_compile/drv-functor1.hs
@@ -41,7 +41,7 @@ data Compose f g a = Compose (f (g a))
-- i.e.:
-- instance (Functor (f Bool), Functor (f Int)) => Functor (ComplexConstraint f)
-- This requires FlexibleContexts and UndecidableInstances
-data ComplexConstraint f a = ComplexContraint (f Int (f Bool a,a))
+data ComplexConstraint f a = ComplexConstraint (f Int (f Bool a,a))
-- deriving (Functor)
data Universal a