summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/Defer02.stderr
Commit message (Collapse)AuthorAgeFilesLines
* Modify a couple of error messages slightlySimon Peyton Jones2015-01-061-8/+7
| | | | | | | | | | | | In particular In the type signature for: f :: Int -> Int I added the colon Also reword the "maybe you haven't applied a function to enough arguments?" suggestion to make grammatical sense. These tiny changes affect a lot of error messages.
* Wibbles (usually improvements) to error messagesSimon Peyton Jones2014-11-211-2/+4
|
* ghc generates more user-friendly error messagesMike Izbicki2014-11-191-2/+6
| | | | | | | | | | Test Plan: Compiled ghc fine. Opened ghci and fed it invalid code. It gave the improved error messages in response. Reviewers: austin Subscribers: thomie, simonpj, spacekitteh, rwbarton, simonmar, carter Differential Revision: https://phabricator.haskell.org/D201
* When outputting list of available instances, sort it.Edward Z. Yang2014-11-181-1/+1
| | | | | | | | | | | | | | | | | Summary: The intent of this commit is to make test suite cases more stable, so that it doesn't matter what order we load interface files in, the test output doesn't change. Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu> Test Plan: validate Reviewers: simonpj, austin Subscribers: thomie, carter Differential Revision: https://phabricator.haskell.org/D484
* Use correct precedence when printing contexts with class operatorsSimon Peyton Jones2014-10-071-4/+4
| | | | Fixes Trac #9658
* Wibbles to "...plus N others" error message about instances in scopeSimon Peyton Jones2014-08-281-3/+2
| | | | I this this arises from my de-orphaning the Enum Word instance
* Tidy up the printing of single-predicate contextsSimon Peyton Jones2014-06-201-2/+2
| | | | | | | | | | This covers things like Eq a => blah and (?x::Int) => blah where there is just one predicate. Previously we used an ad-hoc test to decide whether to parenthesise it, but acutally there is a much simpler solution: just use the existing precedence mechamism. This applies both to Type and HsType.
* Use U+2018 instead of U+201B quote mark in compiler messagesHerbert Valerio Riedel2014-02-251-69/+69
| | | | | | | This matches GCC's choice of Unicode quotation marks (i.e. U+2018 and U+2019) and therefore looks more familiar on the console. This addresses #2507. Signed-off-by: Herbert Valerio Riedel <hvr@gnu.org>
* Error message wibbles following ambiguity check changesSimon Peyton Jones2013-10-021-0/+2
|
* Error message wibblesSimon Peyton Jones2013-09-101-4/+4
| | | | | | | | | | | | Almost all are re-orderings of relevant-binding output Relevant bindings include + m :: Map (a, b) elt (bound at T3169.hs:12:17) + b :: b (bound at T3169.hs:12:13) lookup :: (a, b) -> Map (a, b) elt -> Maybe elt (bound at T3169.hs:12:3) - b :: b (bound at T3169.hs:12:13) - m :: Map (a, b) elt (bound at T3169.hs:12:17)
* Wibbles to error messages, following the fix for Trac #7851Simon Peyton Jones2013-04-291-7/+2
| | | | | | | | In effect, the error context for naked variables now takes up a "slot" in the context stack; but it is often empty. So the context stack becomes one shorter in those cases. I don't think this matters; indeed, it's aguably an improvement. Anyway that's why so many tests are affected.
* Error message wibblesSimon Peyton Jones2013-04-231-0/+5
|
* Accept Defer02 output following unicode quotes changeIan Lynagh2013-02-241-107/+107
|
* Fix line endings in Defer02.stderrIan Lynagh2013-02-241-185/+185
|
* Wibbles to error messages and tests, following ambiguity-check changesSimon Peyton Jones2013-01-081-179/+185
|
* I've changed the error reporting so that with -fdefer-type-errorsSimon Peyton Jones2012-10-041-0/+42
| | | | you get *all* type errors as warnings, rather than some being suppressed
* Tons of error message wibblesSimon Peyton Jones2012-09-281-41/+27
|
* Follow the move of Word from base to ghc-primIan Lynagh2012-05-221-2/+3
|
* Add combined_output option.Paolo Capriotti2012-04-231-91/+150
| | | | | | | | | Added an option to combine stdout and stderr into a single file. This is useful for ghci scripts that produce interleaved errors and normal output. Also modified check_stderr_ok so that it normalizes stderr in the same way as compile tests.
* Error message wibbles following TyClDecl/HsTyDefn refactoringSimon Peyton Jones2012-03-261-91/+91
|
* Raft of wibbles after refactoring type-class constraint errorsSimon Peyton Jones2012-03-091-10/+9
| | | | ...in response to Trac #5858
* Modified error output and new tests for PolyKinds commitSimon Peyton Jones2012-03-021-1/+1
|
* Wibbles to error messagesSimon Peyton Jones2012-02-281-1/+1
|
* Lots of error message wibbling, following theSimon Peyton Jones2012-01-121-0/+92
major TcErrors refactoring