Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/property.kt.after
T

9 lines
156 B
Plaintext

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