Files
kotlin-fork/idea/testData/quickfix/override/implementMember.kt.after
T

11 lines
247 B
Plaintext
Vendored

// "Implement members" "true"
interface I {
fun foo()
}
class A : I {
override fun foo() {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}