summaryrefslogtreecommitdiff
path: root/test/files/pos/t6976/ImplicitBug_2.scala
blob: 2fea5e299307fd8c4ca872e923ebbb5443bff937 (plain) (blame)
1
2
3
4
5
6
7
trait Support extends Exts

// object ImplicitsBug extends App with Support { // A
object ImplicitsBug extends App with Exts { // B
  //Exts // C) this reference helped in the large project.
  println(3.moo)
}