Files
kotlin-fork/idea/testData/intentions/declarations/convertMemberToExtension/abstract.kt.after
T
2015-12-17 11:11:23 +03:00

7 lines
131 B
Plaintext
Vendored

// WITH_RUNTIME
abstract class Owner {
}
fun Owner.f() {
<caret><selection>throw UnsupportedOperationException()</selection>
}