diff options
Diffstat (limited to 'testsuite/tests/partial-sigs/should_fail/PatBind3.stderr')
-rw-r--r-- | testsuite/tests/partial-sigs/should_fail/PatBind3.stderr | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/tests/partial-sigs/should_fail/PatBind3.stderr b/testsuite/tests/partial-sigs/should_fail/PatBind3.stderr index 8ca3dcd540..e4c368c6e1 100644 --- a/testsuite/tests/partial-sigs/should_fail/PatBind3.stderr +++ b/testsuite/tests/partial-sigs/should_fail/PatBind3.stderr @@ -1,9 +1,9 @@ PatBind3.hs:6:12: error: - • Couldn't match type ‘(Bool, _)’ with ‘Char’ - Expected type: Maybe ((Bool, _) -> Char) - Actual type: Maybe ((Bool, _) -> (Bool, _)) + • Couldn't match type ‘(Bool, w)’ with ‘Char’ + Expected: Maybe ((Bool, w) -> Char) + Actual: Maybe ((Bool, w) -> (Bool, w)) • In the expression: Just id In a pattern binding: Just foo = Just id • Relevant bindings include - foo :: (Bool, _) -> Char (bound at PatBind3.hs:6:6) + foo :: (Bool, w) -> Char (bound at PatBind3.hs:6:6) |