mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
20 lines
224 B
Kotlin
Vendored
20 lines
224 B
Kotlin
Vendored
// FILE: 1.kt
|
|
|
|
package test
|
|
|
|
internal class A {
|
|
inline fun doSomething(): String {
|
|
return {
|
|
"OK"
|
|
}()
|
|
}
|
|
}
|
|
|
|
// FILE: 2.kt
|
|
|
|
import test.*
|
|
|
|
fun box(): String {
|
|
return A().doSomething()
|
|
}
|