diff options
author | Tim Hatch <tim@timhatch.com> | 2010-12-21 00:18:03 -0800 |
---|---|---|
committer | Tim Hatch <tim@timhatch.com> | 2010-12-21 00:18:03 -0800 |
commit | 050baee4a72b66b946f44bc8ef1b98b667ece706 (patch) | |
tree | c60847b194dd8c05b644152a98b3505dd0527ff9 /tests | |
parent | b1a1f966e6ee7a9f34b1faf56682bb5126b7164a (diff) | |
download | pygments-050baee4a72b66b946f44bc8ef1b98b667ece706.tar.gz |
Fix parsing of haskell imports (#527)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/examplefiles/import.hs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/examplefiles/import.hs b/tests/examplefiles/import.hs new file mode 100644 index 00000000..09058ae6 --- /dev/null +++ b/tests/examplefiles/import.hs @@ -0,0 +1,4 @@ +import "mtl" Control.Monad.Trans + +main :: IO () +main = putStrLn "hello world" |