Files
kotlin-fork/compiler/testData/codegen/boxInline/smap/classFromDefaultPackage.kt
T
2021-02-02 17:53:53 +03:00

14 lines
120 B
Kotlin
Vendored

// FILE: 1.kt
class A {
inline fun foo() {}
}
// FILE: 2.kt
fun box(): String {
A().foo()
return "OK"
}