diff options
Diffstat (limited to 'testsuite/tests')
-rw-r--r-- | testsuite/tests/module/mod90.stderr | 6 | ||||
-rw-r--r-- | testsuite/tests/rename/should_fail/T10668.stderr | 4 | ||||
-rw-r--r-- | testsuite/tests/rename/should_fail/T5385.stderr | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/testsuite/tests/module/mod90.stderr b/testsuite/tests/module/mod90.stderr index 9febfe3628..78a0040303 100644 --- a/testsuite/tests/module/mod90.stderr +++ b/testsuite/tests/module/mod90.stderr @@ -1,8 +1,8 @@ -mod90.hs:3:16: +mod90.hs:3:16: error: In module ‘Prelude’: ‘Left’ is a data constructor of ‘Either’ To import it use - ‘import’ Prelude( Either( Left ) ) + import Prelude( Either( Left ) ) or - ‘import’ Prelude( Either(..) ) + import Prelude( Either(..) ) diff --git a/testsuite/tests/rename/should_fail/T10668.stderr b/testsuite/tests/rename/should_fail/T10668.stderr index 8c96fad1a8..4e602b28b4 100644 --- a/testsuite/tests/rename/should_fail/T10668.stderr +++ b/testsuite/tests/rename/should_fail/T10668.stderr @@ -3,6 +3,6 @@ T10668.hs:3:27: error: In module ‘Data.Type.Equality’: ‘Refl’ is a data constructor of ‘(:~:)’ To import it use - ‘import’ Data.Type.Equality( (:~:)( Refl ) ) + import Data.Type.Equality( (:~:)( Refl ) ) or - ‘import’ Data.Type.Equality( (:~:)(..) ) + import Data.Type.Equality( (:~:)(..) ) diff --git a/testsuite/tests/rename/should_fail/T5385.stderr b/testsuite/tests/rename/should_fail/T5385.stderr index 677c31ff3e..dd825c6119 100644 --- a/testsuite/tests/rename/should_fail/T5385.stderr +++ b/testsuite/tests/rename/should_fail/T5385.stderr @@ -1,8 +1,8 @@ -T5385.hs:3:16: +T5385.hs:3:16: error: In module ‘T5385a’: ‘(:::)’ is a data constructor of ‘T’ To import it use - ‘import’ T5385a( T( (:::) ) ) + import T5385a( T( (:::) ) ) or - ‘import’ T5385a( T(..) ) + import T5385a( T(..) ) |