summaryrefslogtreecommitdiff
path: root/test/files/pos/t5444.scala
blob: df6b2ce4f80969e335d15d24654a1c2af364f2cc (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
40
41
42
// /scala/trac/5444/a.scala
// Mon Feb 13 21:01:45 PST 2012

// Traits require identical names to reproduce.
class Test {
  def a() = {
    trait T {
      def x() = 1
    }
    trait U {
      def x1() = 2
    }
    class Bippy extends T with U { def z() = x() + x1() }
    new Bippy
  }
  def b() {
    trait T {
      def y() = 3
      trait T2 {
        def yy() = 10
      }
    }
    trait U {
      def y1() = 4
      trait T3 {
        def yy() = 11
      }
    }
    class Bippy extends T with U { def z() = y() + y1() + (1 to (new T2 { }).yy()).map(_ + 1).sum }
    (new Bippy).z()
  }
  def c() {
    trait T {
      def z() = 5
    }
    trait U {
      def z1() = 6
    }
    (new Test with T with U).z1()
  }
}