blob: 71b98ae6e22d9107947a8b90e31d8754fe785255 [file] [log] [blame]
// FIR_IDENTICAL
// 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>
}
}