blob: b44de82a4c3488e9a67bea9dc2142eff6c135a38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import Break020b
line1 _ = return ()
line2 _ = return ()
in_another_decl _ = do line1 0
line2 0
main = do
line1 0
line2 0
in_another_decl 0
in_another_module 0
line2 1
return ()
|