Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/property.kt
T
2011-11-04 19:20:53 +01:00

8 lines
60 B
Kotlin

trait T {
val v : Int
}
class GC() : T {
<caret>
}