aboutsummaryrefslogtreecommitdiff
path: root/tests/neg/i1145.scala
blob: b33300b912ae35ccf277080e4c0cb2bfdef6572f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
object A {
   def x = 3

   def y = {
     import B._
     x  // error: ambiguous
   }
}
object B {
  def x = 3
}