summaryrefslogtreecommitdiff
path: root/test/files/run/t3994.scala
blob: 0ee1d9d96670f898ebacdeb240bd12eb62b95f30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
trait T {
  trait Default { def foo = this }
  object Default extends Default
}

class Crash { // if you change this to a `trait` it keeps failing, though if it is an `object` it compiles just fine!
  class Element

  /* declare this as a class, and the crash goes away */
  trait ElementOrdering extends Ordering[Element] {
    def compare(a: Element, b: Element): Int = 0
  }

  implicit object ElementOrdering extends ElementOrdering
}

object Test extends App {
  (new T {}).Default
  (new Crash).ElementOrdering
}