diff options
Diffstat (limited to 'testsuite/tests/parser/should_compile/read043.hs')
-rw-r--r-- | testsuite/tests/parser/should_compile/read043.hs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/tests/parser/should_compile/read043.hs b/testsuite/tests/parser/should_compile/read043.hs new file mode 100644 index 0000000000..c663a7526e --- /dev/null +++ b/testsuite/tests/parser/should_compile/read043.hs @@ -0,0 +1,11 @@ + +{-# OPTIONS -fwarn-tabs #-} + +-- Check we get a warning for tabs + +module ShouldCompile where + +tab1 = 'a' +notab = 'b' +tab2 = 'c' + |