mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
16 lines
309 B
Plaintext
Vendored
16 lines
309 B
Plaintext
Vendored
// 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>
|
|
}
|
|
} |