diff options
author | Joachim Breitner <mail@joachim-breitner.de> | 2014-06-06 15:00:52 +0200 |
---|---|---|
committer | Joachim Breitner <mail@joachim-breitner.de> | 2014-06-06 16:03:29 +0200 |
commit | 819e1f2c2e10268fe3edc8395f2707b93c9c6f4d (patch) | |
tree | 99ad8bc376a9c477b5d3629a229aa0bde9b97832 /testsuite/tests/ghci/scripts/T8959.stderr | |
parent | 1178fa4ada1ac054976f3abb2e303ad42653e303 (diff) | |
download | haskell-819e1f2c2e10268fe3edc8395f2707b93c9c6f4d.tar.gz |
Use UnicodeSyntax when printing
When printing Haskell source, and UnicodeSyntax is enabled, use the
unicode sytax characters (#8959).
Diffstat (limited to 'testsuite/tests/ghci/scripts/T8959.stderr')
-rw-r--r-- | testsuite/tests/ghci/scripts/T8959.stderr | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/testsuite/tests/ghci/scripts/T8959.stderr b/testsuite/tests/ghci/scripts/T8959.stderr new file mode 100644 index 0000000000..b3995c3365 --- /dev/null +++ b/testsuite/tests/ghci/scripts/T8959.stderr @@ -0,0 +1,36 @@ + +<interactive>:1:1: + Arrow command found where an expression was expected: + () >- () -< () >>- () -<< () + +<interactive>:7:15: + Couldn't match expected type ‘()’ with actual type ‘Bool’ + In the pattern: True + In a stmt of a pattern guard for + an equation for ‘fun’: + True <- () + In an equation for ‘fun’: fun foo | True <- () = () + +<interactive>:1:1: + Arrow command found where an expression was expected: + () ↣ () ↢ () ⤜ () ⤛ () + +<interactive>:14:15: + Couldn't match expected type ‘()’ with actual type ‘Bool’ + In the pattern: True + In a stmt of a pattern guard for + an equation for ‘fun’: + True ← () + In an equation for ‘fun’: fun foo | True ← () = () + +<interactive>:1:1: + Arrow command found where an expression was expected: + () >- () -< () >>- () -<< () + +<interactive>:21:15: + Couldn't match expected type ‘()’ with actual type ‘Bool’ + In the pattern: True + In a stmt of a pattern guard for + an equation for ‘fun’: + True <- () + In an equation for ‘fun’: fun foo | True <- () = () |