Files
kotlin-fork/idea/testData/intentions/changeVisibility/protected/notForInternalOverride.kt
T
2015-05-27 16:15:51 +03:00

8 lines
121 B
Kotlin
Vendored

// IS_APPLICABLE: false
interface I {
internal fun foo()
}
abstract class C : I {
<caret>override fun foo() {}
}