| // 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> | |
| } | |
| } |