diff options
Diffstat (limited to 'testsuite/tests/parser/should_fail/T16270h.hs')
-rw-r--r-- | testsuite/tests/parser/should_fail/T16270h.hs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/tests/parser/should_fail/T16270h.hs b/testsuite/tests/parser/should_fail/T16270h.hs new file mode 100644 index 0000000000..c44d6edba5 --- /dev/null +++ b/testsuite/tests/parser/should_fail/T16270h.hs @@ -0,0 +1,13 @@ +-- We can't test module header parsing errors using the same file as other +-- parsing errors (in ../T16270.hs) because HeaderInfo.getImports fails fast +-- on parsing imports: +-- +-- if errorsFound dflags ms +-- then throwIO $ mkSrcErr errs +-- +module T16270h (type G) where + +import "pkg?" M +import "pkg!" M + +data G a |