Skip to content
Snippets Groups Projects
Commit 79d99aca authored by Ian Lynagh's avatar Ian Lynagh
Browse files

Follow more output changes

parent b95df775
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@ TYPE CONSTRUCTORS
type family Elem c :: *
empty :: c insert :: Elem c -> c -> c
data ListColl a
No C type associated
RecFlag NonRecursive
= L :: forall a. [a] -> ListColl a Stricts: _
FamilyInstance: none
......
......@@ -12,21 +12,31 @@ RnFail055.hs-boot:4:1:
RnFail055.hs-boot:6:6:
Type constructor `S1' has conflicting definitions in the module and its hs-boot file
Main module: type S1 a b = (a, b)
Boot file: type S1 a b c = (a, b)
Main module: type S1 a b
No C type associated
= (a, b)
Boot file: type S1 a b c
No C type associated
= (a, b)
RnFail055.hs-boot:8:6:
Type constructor `S2' has conflicting definitions in the module and its hs-boot file
Main module: type S2 a b = forall a. (a, b)
Boot file: type S2 a b = forall b. (a, b)
Main module: type S2 a b
No C type associated
= forall a. (a, b)
Boot file: type S2 a b
No C type associated
= forall b. (a, b)
RnFail055.hs-boot:12:6:
Type constructor `T1' has conflicting definitions in the module and its hs-boot file
Main module: data T1 a b
No C type associated
RecFlag Recursive
= T1 :: forall a b. [b] -> [a] -> T1 a b Stricts: _ _
FamilyInstance: none
Boot file: data T1 a b
No C type associated
RecFlag NonRecursive
= T1 :: forall a b. [a] -> [b] -> T1 a b Stricts: _ _
FamilyInstance: none
......@@ -34,10 +44,12 @@ RnFail055.hs-boot:12:6:
RnFail055.hs-boot:14:16:
Type constructor `T2' has conflicting definitions in the module and its hs-boot file
Main module: data Eq b => T2 a b
No C type associated
RecFlag Recursive
= T2 :: forall a b. a -> T2 a b Stricts: _
FamilyInstance: none
Boot file: data Eq a => T2 a b
No C type associated
RecFlag NonRecursive
= T2 :: forall a b. a -> T2 a b Stricts: _
FamilyInstance: none
......@@ -51,10 +63,12 @@ RnFail055.hs-boot:17:12:
RnFail055.hs-boot:21:6:
Type constructor `T5' has conflicting definitions in the module and its hs-boot file
Main module: data T5 a
No C type associated
RecFlag Recursive
= T5 :: forall a. a -> T5 a Stricts: _ Fields: field5
FamilyInstance: none
Boot file: data T5 a
No C type associated
RecFlag NonRecursive
= T5 :: forall a. a -> T5 a Stricts: _
FamilyInstance: none
......@@ -62,10 +76,12 @@ RnFail055.hs-boot:21:6:
RnFail055.hs-boot:23:6:
Type constructor `T6' has conflicting definitions in the module and its hs-boot file
Main module: data T6
No C type associated
RecFlag Recursive
= T6 :: Int -> T6 Stricts: _
FamilyInstance: none
Boot file: data T6
No C type associated
RecFlag NonRecursive
= T6 :: Int -> T6 HasWrapper Stricts: !
FamilyInstance: none
......@@ -73,10 +89,12 @@ RnFail055.hs-boot:23:6:
RnFail055.hs-boot:25:6:
Type constructor `T7' has conflicting definitions in the module and its hs-boot file
Main module: data T7 a
No C type associated
RecFlag Recursive
= T7 :: forall a a. a -> T7 a Stricts: _
FamilyInstance: none
Boot file: data T7 a
No C type associated
RecFlag NonRecursive
= T7 :: forall a b. a -> T7 a Stricts: _
FamilyInstance: none
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment