summaryrefslogtreecommitdiff
path: root/test/files/pos/t6294.scala
blob: c6d39a9cc82a454d8de3b310dccd9134832ef9c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
object A {
  @annotation.static final val x = 123
}


object B {
  println(A.x)
}