9 lines
160 B
Plaintext
Vendored
9 lines
160 B
Plaintext
Vendored
interface T {
|
|
val v : Int
|
|
}
|
|
|
|
class GC() : T {
|
|
override val v: Int
|
|
get() = <selection><caret>throw UnsupportedOperationException()</selection>
|
|
}
|