11 lines
192 B
Plaintext
Vendored
11 lines
192 B
Plaintext
Vendored
// FIR_IDENTICAL
|
|
interface G<T> {
|
|
fun foo(t : T) : T
|
|
}
|
|
|
|
class GC() : G<Int> {
|
|
override fun foo(t: Int): Int {
|
|
<selection><caret>TODO("Not yet implemented")</selection>
|
|
}
|
|
}
|