summaryrefslogtreecommitdiff
path: root/testdata/language-features/module/import07.out
blob: d4fdc1b8737100eaccb289d94c38cc39b83ae084 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
main is not found
------------ desugared source code
hello = _lhs hello (_rhs ())

x = _lhs x (_rhs world)
------------ core code
hello :: ()
hello = _rhs ()

x :: String
x = _rhs "world"
------------ tooltips
3:1-3:6
    ()
3:9-3:11
    ()
4:1-4:2
    String
4:5-4:10
    String