blob: d1ce01dd0ea73b32d30b615d0afb25d0fba6c513 [file] [log] [blame]
// COPY_DOC
abstract class A {
/**
* @see TEST
*/
abstract fun foo()
}
class B : A() {
/**
* @see TEST
*/
override fun foo() {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
}
}