Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/property.kt.after
T
olegkunov 96d7203370 KT-1378 Code formatting: spaces around ':'
Changed test data to match actual behavior of the "override methods" feature.
2012-03-01 21:18:37 +04:00

9 lines
78 B
Plaintext

trait T {
val v : Int
}
class GC() : T {
override val v : Int = 0
}