diff options
author | Vladislav Zavialov <vlad.z.4096@gmail.com> | 2019-11-15 10:01:07 +0300 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-11-19 20:39:20 -0500 |
commit | b79e46d682d144c6a7a9ff6e7dca0d892b690654 (patch) | |
tree | 58b06bf198b38cdebc622f43532177fc07792f72 /testsuite/tests/partial-sigs | |
parent | ef8a08e0dd4e5b908b7fbce1b3101dc311c4d3e1 (diff) | |
download | haskell-b79e46d682d144c6a7a9ff6e7dca0d892b690654.tar.gz |
Strip parentheses in expressions contexts in error messages
This makes error messages a tad less noisy.
Diffstat (limited to 'testsuite/tests/partial-sigs')
-rw-r--r-- | testsuite/tests/partial-sigs/should_compile/ExprSigLocal.stderr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/partial-sigs/should_compile/ExprSigLocal.stderr b/testsuite/tests/partial-sigs/should_compile/ExprSigLocal.stderr index a6dbd5a143..ea7e3d5214 100644 --- a/testsuite/tests/partial-sigs/should_compile/ExprSigLocal.stderr +++ b/testsuite/tests/partial-sigs/should_compile/ExprSigLocal.stderr @@ -6,7 +6,7 @@ ExprSigLocal.hs:9:35: warning: [-Wpartial-type-signatures (in -Wdefault)] at ExprSigLocal.hs:9:20-35 • In the type ‘a -> _’ In an expression type signature: forall a. a -> _ - In the expression: ((\ x -> x) :: forall a. a -> _) + In the expression: (\ x -> x) :: forall a. a -> _ • Relevant bindings include y :: b -> b (bound at ExprSigLocal.hs:9:1) |