Files
kotlin/compiler/testData/codegen/boxWithJava/protectedInInline/Kotlin.kt
2015-10-30 09:39:08 +03:00

9 lines
109 B
Kotlin
Vendored

package test
import JavaClass
class B : JavaClass() {
inline fun bar() = FIELD
}
fun box() = B().bar()