1635018fe7
#KT-11807 Fixed
11 lines
247 B
Plaintext
Vendored
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.
|
|
}
|
|
}
|