Files
kotlin-fork/compiler/testData/cli/jvm/multipleTextRangesInDiagnosticsOrder.kt
T
2013-11-21 17:37:36 +04:00

8 lines
92 B
Kotlin

trait A {
public val c: Int
}
trait B: A {
override protected private val c: Int
}