ffe4e760d7
#KT-8682 Fixed #KT-12735 Fixed (cherry picked from commit f4486be)
16 lines
340 B
Plaintext
Vendored
16 lines
340 B
Plaintext
Vendored
// COPY_DOC
|
|
abstract class A {
|
|
/**
|
|
* @see TEST
|
|
*/
|
|
abstract fun foo()
|
|
}
|
|
|
|
class B : A() {
|
|
/**
|
|
* @see TEST
|
|
*/
|
|
override fun foo() {
|
|
<selection><caret>throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
|
}
|
|
} |