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