9 lines
157 B
Plaintext
9 lines
157 B
Plaintext
package test
|
|
|
|
import dependency.D
|
|
|
|
class C: D<Int>() {
|
|
override fun id(t: Int): Int {
|
|
<selection><caret>return super<D>.id(t)</selection>
|
|
}
|
|
} |