summaryrefslogtreecommitdiff
path: root/testsuite/tests/partial-sigs/should_compile/T15039d.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/partial-sigs/should_compile/T15039d.stderr')
-rw-r--r--testsuite/tests/partial-sigs/should_compile/T15039d.stderr44
1 files changed, 25 insertions, 19 deletions
diff --git a/testsuite/tests/partial-sigs/should_compile/T15039d.stderr b/testsuite/tests/partial-sigs/should_compile/T15039d.stderr
index 8595955f87..6c6e1a0c24 100644
--- a/testsuite/tests/partial-sigs/should_compile/T15039d.stderr
+++ b/testsuite/tests/partial-sigs/should_compile/T15039d.stderr
@@ -1,58 +1,64 @@
T15039d.hs:19:14: warning: [-Wpartial-type-signatures (in -Wdefault)]
- • Found type wildcard ‘_’ standing for ‘Dict ((a :: *) ~ (b :: *))’
+ • Found type wildcard ‘_’
+ standing for ‘Dict ((a :: Type) ~ (b :: Type))’
Where: ‘a’, ‘b’ are rigid type variables bound by
the type signature for:
- ex1 :: forall a b. Dict ((a :: *) ~ (b :: *)) -> ()
- at T15039d.hs:18:1-39
+ ex1 :: forall a b. Dict ((a :: Type) ~ (b :: Type)) -> ()
+ at T15039d.hs:18:1-45
• In a pattern type signature: _
In the pattern: Dict :: _
In an equation for ‘ex1’: ex1 (Dict :: _) = ()
• Relevant bindings include
- ex1 :: Dict ((a :: *) ~ (b :: *)) -> () (bound at T15039d.hs:19:1)
+ ex1 :: Dict ((a :: Type) ~ (b :: Type)) -> ()
+ (bound at T15039d.hs:19:1)
T15039d.hs:22:14: warning: [-Wpartial-type-signatures (in -Wdefault)]
• Found type wildcard ‘_’
- standing for ‘Dict ((a :: *) ~~ (b :: *))’
+ standing for ‘Dict ((a :: Type) ~~ (b :: Type))’
Where: ‘a’, ‘b’ are rigid type variables bound by
the type signature for:
- ex2 :: forall a b. Dict ((a :: *) ~~ (b :: *)) -> ()
- at T15039d.hs:21:1-40
+ ex2 :: forall a b. Dict ((a :: Type) ~~ (b :: Type)) -> ()
+ at T15039d.hs:21:1-46
• In a pattern type signature: _
In the pattern: Dict :: _
In an equation for ‘ex2’: ex2 (Dict :: _) = ()
• Relevant bindings include
- ex2 :: Dict ((a :: *) ~~ (b :: *)) -> () (bound at T15039d.hs:22:1)
+ ex2 :: Dict ((a :: Type) ~~ (b :: Type)) -> ()
+ (bound at T15039d.hs:22:1)
T15039d.hs:25:14: warning: [-Wpartial-type-signatures (in -Wdefault)]
• Found type wildcard ‘_’
- standing for ‘Dict ((a :: *) ~~ (b :: k))’
+ standing for ‘Dict ((a :: Type) ~~ (b :: k))’
Where: ‘a’, ‘b’, ‘k’ are rigid type variables bound by
the type signature for:
- ex3 :: forall k a (b :: k). Dict ((a :: *) ~~ (b :: k)) -> ()
- at T15039d.hs:24:1-40
+ ex3 :: forall k a (b :: k). Dict ((a :: Type) ~~ (b :: k)) -> ()
+ at T15039d.hs:24:1-43
• In a pattern type signature: _
In the pattern: Dict :: _
In an equation for ‘ex3’: ex3 (Dict :: _) = ()
• Relevant bindings include
- ex3 :: Dict ((a :: *) ~~ (b :: k)) -> () (bound at T15039d.hs:25:1)
+ ex3 :: Dict ((a :: Type) ~~ (b :: k)) -> ()
+ (bound at T15039d.hs:25:1)
T15039d.hs:33:14: warning: [-Wpartial-type-signatures (in -Wdefault)]
- • Found type wildcard ‘_’ standing for ‘Dict (Coercible * a b)’
+ • Found type wildcard ‘_’ standing for ‘Dict (Coercible Type a b)’
Where: ‘a’, ‘b’ are rigid type variables bound by
the type signature for:
- ex6 :: forall a b. Dict (Coercible * a b) -> ()
- at T15039d.hs:32:1-47
+ ex6 :: forall a b. Dict (Coercible Type a b) -> ()
+ at T15039d.hs:32:1-53
• In a pattern type signature: _
In the pattern: Dict :: _
In an equation for ‘ex6’: ex6 (Dict :: _) = ()
• Relevant bindings include
- ex6 :: Dict (Coercible * a b) -> () (bound at T15039d.hs:33:1)
+ ex6 :: Dict (Coercible Type a b) -> () (bound at T15039d.hs:33:1)
T15039d.hs:35:8: warning: [-Wpartial-type-signatures (in -Wdefault)]
- • Found type wildcard ‘_’ standing for ‘(a :: *) ~R# (b :: *)’
+ • Found type wildcard ‘_’
+ standing for ‘(a :: Type) ~R# (b :: Type)’
Where: ‘a’, ‘b’ are rigid type variables bound by
the inferred type of
- ex7 :: ((a :: *) ~R# (b :: *)) => Coercion * a b
+ ex7 :: ((a :: Type) ~R# (b :: Type)) => Coercion Type a b
at T15039d.hs:36:1-14
- • In the type signature: ex7 :: _ => Coercion (a :: *) (b :: *)
+ • In the type signature:
+ ex7 :: _ => Coercion (a :: Type) (b :: Type)