mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
13 lines
174 B
Plaintext
Vendored
13 lines
174 B
Plaintext
Vendored
// COPY_DOC
|
|
|
|
import foo.A
|
|
|
|
class B : A() {
|
|
/**
|
|
* @return TEST
|
|
*/
|
|
override fun foo(): Int {
|
|
<selection><caret>return super.foo()</selection>
|
|
}
|
|
}
|