Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/property.kt.after
T
2014-10-06 17:53:02 +04:00

8 lines
106 B
Plaintext

trait T {
val v : Int
}
class GC() : T {
override val v: Int = <selection><caret>0</selection>
}