summaryrefslogblamecommitdiff
path: root/test/files/run/bug3964.scala
blob: df1eb716e810a311f364b557638083a2d48a2cfe (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                   
object Test {
  class Base
  object Bob extends Base
  class Foo { def bippy = 42 }
  class Oof { def bippy = -21 }

  // I am more specific than you
  implicit def f1(x: Bob.type): Foo = new Foo
  implicit def f2(x: Base): Oof = new Oof

  def main(args: Array[String]): Unit = {
    // this would of course print an unambiguous 42
    println(Bob.bippy)
    println((new Base).bippy)
  }
}