summaryrefslogtreecommitdiff
path: root/test/files/pos/val_infer.scala
blob: 5f82da83931f6ae0b0f54d6c450ba1f0b5971b40 (plain) (blame)
1
2
3
4
5
class Test {
  implicit def s2i(s: String): Int = s.length
  trait Base { def foo: Int }
  trait Sub extends Base { val foo = "" }
}