9 lines
106 B
Kotlin
Vendored
9 lines
106 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
interface Runnable {
|
|
fun run()
|
|
}
|
|
|
|
class <caret>A : Runnable {
|
|
fun foo() {
|
|
}
|
|
} |