summaryrefslogtreecommitdiff
path: root/testsuite/tests/indexed-types/should_fail/ClosedFam3.stderr
diff options
context:
space:
mode:
authorRichard Eisenberg <eir@cis.upenn.edu>2013-10-22 11:16:21 -0400
committerRichard Eisenberg <eir@cis.upenn.edu>2013-10-23 09:23:24 -0400
commit324f9952b5962eb971028401544e54f43a5abe66 (patch)
tree17910cbea05e662dafabd6360197f7e0f94ad474 /testsuite/tests/indexed-types/should_fail/ClosedFam3.stderr
parent99cd277c181dfb346d5f2d5fc9475379229037d0 (diff)
downloadhaskell-324f9952b5962eb971028401544e54f43a5abe66.tar.gz
Wibbles to output regarding role annotations.
Diffstat (limited to 'testsuite/tests/indexed-types/should_fail/ClosedFam3.stderr')
-rw-r--r--testsuite/tests/indexed-types/should_fail/ClosedFam3.stderr21
1 files changed, 6 insertions, 15 deletions
diff --git a/testsuite/tests/indexed-types/should_fail/ClosedFam3.stderr b/testsuite/tests/indexed-types/should_fail/ClosedFam3.stderr
index 58121dcf9d..dfbb7dc142 100644
--- a/testsuite/tests/indexed-types/should_fail/ClosedFam3.stderr
+++ b/testsuite/tests/indexed-types/should_fail/ClosedFam3.stderr
@@ -2,32 +2,23 @@
ClosedFam3.hs-boot:5:1:
Type constructor ‛Foo’ has conflicting definitions in the module
and its hs-boot file
- Main module: type role Foo nominal
- type family Foo a :: * where
+ Main module: type family Foo a :: * where
Foo Int = Bool
Foo Double = Char
- Boot file: type role Foo nominal
- type family Foo a :: * where
- Foo Int = Bool
+ Boot file: type family Foo a :: * where Foo Int = Bool
ClosedFam3.hs-boot:8:1:
Type constructor ‛Bar’ has conflicting definitions in the module
and its hs-boot file
- Main module: type role Bar nominal
- type family Bar a :: * where
+ Main module: type family Bar a :: * where
Bar Int = Bool
Bar Double = Double
- Boot file: type role Bar nominal
- type family Bar a :: * where
+ Boot file: type family Bar a :: * where
Bar Int = Bool
Bar Double = Char
ClosedFam3.hs-boot:12:1:
Type constructor ‛Baz’ has conflicting definitions in the module
and its hs-boot file
- Main module: type role Baz nominal
- type family Baz a :: * where
- Baz Int = Bool
- Boot file: type role Baz nominal
- type family Baz (a :: k) :: * where
- Baz Int = Bool
+ Main module: type family Baz a :: * where Baz Int = Bool
+ Boot file: type family Baz (a :: k) :: * where Baz Int = Bool