summaryrefslogtreecommitdiff
path: root/test/files/run/t4560.scala
blob: f809e678982d585320235c0567116949a9c03946 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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