diff options
Diffstat (limited to 'testsuite/tests/parser/should_compile/read025.hs')
-rw-r--r-- | testsuite/tests/parser/should_compile/read025.hs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/tests/parser/should_compile/read025.hs b/testsuite/tests/parser/should_compile/read025.hs new file mode 100644 index 0000000000..7eca04e85c --- /dev/null +++ b/testsuite/tests/parser/should_compile/read025.hs @@ -0,0 +1,9 @@ +-- !!! Check the handling of 'qualified' and 'as' clauses +module ShouldCompile where + +import Data.List as L ( intersperse ) + +x = L.intersperse + +y = intersperse + |