aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorsimonmar <unknown>2005-01-04 16:16:54 +0000
committersimonmar <unknown>2005-01-04 16:16:54 +0000
commit47870837e855daea82c09ca59315a048fc8438a6 (patch)
treea75e9b04695bf921eac5473c18dfc49429551d15 /examples
parent05f70f6e4d5d413e6fc128fa9de65ac3ac141840 (diff)
[haddock @ 2005-01-04 16:16:54 by simonmar]
Add a test
Diffstat (limited to 'examples')
-rw-r--r--examples/Bug9.hs6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/Bug9.hs b/examples/Bug9.hs
new file mode 100644
index 00000000..81e341db
--- /dev/null
+++ b/examples/Bug9.hs
@@ -0,0 +1,6 @@
+-- Haddock 0.6 didn't parse this module, because the qualified
+-- identifier C.safe was incorrectly lexed as 3 tokens.
+
+module Check where
+import qualified Foo as C
+check = undefined { C.safe = 3 }