blob: d6b83b23f36446b763511ff794b77da84b78fff1 [file]
// COPY_DOC
abstract class A {
/**
* @see TEST
*/
abstract fun foo()
}
class B : A() {
/**
* @see TEST
*/
override fun foo() {
<selection><caret>TODO("Not yet implemented")</selection>
}
}