Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/property.kt.after
T
2015-05-13 16:13:13 +02:00

9 lines
160 B
Plaintext
Vendored

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