mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
9 lines
154 B
Plaintext
Vendored
9 lines
154 B
Plaintext
Vendored
package test
|
|
|
|
import dependency.D
|
|
|
|
class C: D<Int>() {
|
|
override fun id(t: Int): Int {
|
|
<selection><caret>return super.id(t)</selection>
|
|
}
|
|
} |