aboutsummaryrefslogblamecommitdiff
path: root/tests/untried/neg/name-lookup-stable.scala
blob: 0d862f06e136fc328d42ff01378eaec3fbdcd24e (plain) (tree)



















                                                                     
// This used to compile under 2.10.3 but the ambiguity is now noticed
// in 2.11.x (after a70c8219). I think the new behaviour is correct;
// we shouldn't discard names based on "expected stability" before
// evaluating ambiguity.
object ColumnOption {
  object PrimaryKey
}

class A {
  def PrimaryKey: Any = ???

  {
    import ColumnOption._

    (null: Any) match { case PrimaryKey => }

    PrimaryKey // was already ambigious in 2.10.3
  }
}