DEBSOURCES
Skip Quicknav
sources / scala / 2.11.12-6 / test / files / neg / t2405.scala
12345678910
object A { implicit val x: Int = 1 } // Expecting shadowing #1 object Test2 { { import A.{x => y} def y: Int = 0 implicitly[Int] } }