summaryrefslogblamecommitdiff
path: root/test/files/neg/t2773.scala
blob: aaa6351c83d487aae917f4f158e2a8426eaa7245 (plain) (tree)
1
2
3
4
5
6
7
8







                               
class C(x: Int) { def foo = x }

object Test {
  val c = new C(0)
  import c.x
  println(x)
}