summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTim Hatch <tim@timhatch.com>2010-12-21 00:18:03 -0800
committerTim Hatch <tim@timhatch.com>2010-12-21 00:18:03 -0800
commit050baee4a72b66b946f44bc8ef1b98b667ece706 (patch)
treec60847b194dd8c05b644152a98b3505dd0527ff9 /tests
parentb1a1f966e6ee7a9f34b1faf56682bb5126b7164a (diff)
downloadpygments-050baee4a72b66b946f44bc8ef1b98b667ece706.tar.gz
Fix parsing of haskell imports (#527)
Diffstat (limited to 'tests')
-rw-r--r--tests/examplefiles/import.hs4
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"