summaryrefslogtreecommitdiff
path: root/testdata/language-features/basic-values/shadowing04.out
blob: 1c371ceafe41e6152c7cf5127ca45ec2cd5fe25b (plain)
1
2
3
4
5
6
7
8
9
10
11
main is not found
------------ desugared source code
__ = _lhs __ \(_ :: _) (_ :: _) -> _rhs ()
------------ core code
__ :: forall a b . a -> b -> ()
__ = \a b _ _ -> _rhs ()
------------ tooltips
shadowing04.lc 1:1-1:3
    forall a b . a -> b -> ()
shadowing04.lc 1:11-1:13
    ()