mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
8 lines
122 B
Kotlin
Vendored
8 lines
122 B
Kotlin
Vendored
// A.kt
|
|
package first
|
|
|
|
open class A {
|
|
protected open fun test(): String = "FAIL (A)"
|
|
}
|
|
|
|
fun box() = second.C().value() |