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

















                                  











                      


                                 
              

   
 
                                
 
object Pimper {
 implicit def pimp(i: Int) = new {
    def test: String = i.toString
  }
}

trait A

trait B {
  self: A =>

  def test {
    import Pimper.pimp

    println(5.test)
  }
}

class A2

trait B2 {
  self: A2 =>

  def test {
    import Pimper.pimp

    println(5.test)
  }
}

object Test extends A with B {
  def main(args: Array[String]) {
    test
    Test2.test
  }
}

object Test2 extends A2 with B2