8 lines
126 B
Kotlin
Vendored
8 lines
126 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
interface I {
|
|
public fun foo()
|
|
}
|
|
|
|
abstract class C : I {
|
|
<caret>public override fun foo() {}
|
|
} |