summaryrefslogtreecommitdiff
path: root/test/files/run/static-annot-repl.check
blob: d1029a98095ea3e0766e9ebaa26bac926d96fa37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Type in expressions to have them evaluated.
Type :help for more information.

scala> 

scala> import annotation.static
import annotation.static

scala> @static var x1 = 42
x1: Int = 42

scala> @static val x2 = 43
x2: Int = 43

scala> @static def x3 = 44
x3: Int

scala> x1
res0: Int = 42

scala> x2
res1: Int = 43

scala> x3
res2: Int = 44

scala> class Test {
  @static def x = 42
}
defined class Test

scala>