summaryrefslogtreecommitdiff
path: root/test/files/neg/t4831.scala
blob: 82346ec57dc0530d0f06fa74ffd2f020a590a95d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
object O {
  val a = 0
  val b = 1
}

import O.{a => b}
import O.b

object test {
  println(b)
}