summaryrefslogtreecommitdiff
path: root/test/files/run/t6434.check
blob: f898b6b781fb206990795f0a0eec930d70c33431 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
Type in expressions to have them evaluated.
Type :help for more information.

scala> def f(x: => Int): Int = x
f: (x: => Int)Int

scala> f _
res0: (=> Int) => Int = <function1>

scala>