13 lines
197 B
Plaintext
Vendored
13 lines
197 B
Plaintext
Vendored
// FIR_IDENTICAL
|
|
interface Runnable {
|
|
fun run()
|
|
}
|
|
|
|
class A : Runnable {
|
|
fun foo() {
|
|
}
|
|
|
|
override fun run() {
|
|
<selection><caret>TODO("Not yet implemented")</selection>
|
|
}
|
|
} |