blob: 46c15873f2e14cdf0cabaff31c5ff7973a5d9090 [file]
interface T {
val v : Int
}
class GC() : T {
override val v: Int
get() = <selection><caret>throw UnsupportedOperationException()</selection>
}