summaryrefslogblamecommitdiff
path: root/test/files/pos/t6201.scala
blob: d4e5bce03a74d134015de76b3fbbf6f1bcde8e83 (plain) (tree)


















                                                                  
// probably needs xml's weirdness to reproduce
// (specifically, _root_.scala.xml.Null being in the root package)
class Elem

class Test {
  def elem: Elem = ???

  class Foo1 {
    def must(x: Elem) = ()
  }

  class Foo2 {
    def must(x: Int) = ()
  }
  implicit def toFoo1(s: Elem) = new Foo1()
  implicit def toFoo2(s: Elem) = new Foo2()

  def is: Unit = { (elem) }
}