blob: 45c89040da69beb728d94e2e9f01cf48b081e98b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{-# LANGUAGE Haskell2010 #-}
-- 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 = ()
|