blob: 589aa69ed67bb50ad750702be9e5887ab45750c7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
-- Just like Bug308 module but here we test that referring to anchors
-- from other modules works.
module Bug308CrossModule where
import Bug308
{-|
start "Bug308#startAnchor"
startOldStyle "Bug308\#startAnchor"
middle "Bug308#middleAnchor"
end "Bug308#middleAnchor"
-}
h :: ()
h = ()
|