7 lines
89 B
Kotlin
7 lines
89 B
Kotlin
package foo
|
|
|
|
open class A() {
|
|
fun f() = 3
|
|
}
|
|
|
|
fun box() = (A().f() + bar.A().f()) == 9 |