DEBSOURCES
Skip Quicknav
sources / scala / 2.11.12-6 / test / files / pos / t2545.scala
12345678910
trait Frog[T] { def hello: T def size: Int } trait OnlyWithFrogs { self: Frog[_] => def sizeStr = size.toString }