summaryrefslogtreecommitdiff
path: root/testdata/language-features/module/import07.out
blob: 2b35602f0d7ceab0b23bf171b7ef8c6f68ac1b77 (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
import07.lc 3:1-3:6
    ()
import07.lc 3:9-3:11
    ()
import07.lc 4:1-4:2
    String
import07.lc 4:5-4:10
    String