diff options
Diffstat (limited to 'html-test')
-rw-r--r-- | html-test/src/Ticket253_1.hs | 6 | ||||
-rw-r--r-- | html-test/src/Ticket253_2.hs | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/html-test/src/Ticket253_1.hs b/html-test/src/Ticket253_1.hs new file mode 100644 index 00000000..62ab4b17 --- /dev/null +++ b/html-test/src/Ticket253_1.hs @@ -0,0 +1,6 @@ +module Ticket253_1 where +-- | See 'Ticket253_2.bar'. +-- +-- Also see 'Ticket253_2.Baz' +foo :: Int +foo = 0 diff --git a/html-test/src/Ticket253_2.hs b/html-test/src/Ticket253_2.hs new file mode 100644 index 00000000..a19d4cee --- /dev/null +++ b/html-test/src/Ticket253_2.hs @@ -0,0 +1,6 @@ +module Ticket253_2 where +-- | Comment +bar :: Int +bar = 0 + +data Baz = Baz |