mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
Fixed wrong owner mapping in presence of -Xmultifile-package-facades. Fixed backing field mapping issue. Added more tests.
6 lines
158 B
Kotlin
Vendored
6 lines
158 B
Kotlin
Vendored
@file:[JvmName("MultifileClass") JvmMultifileClass]
|
|
package a
|
|
|
|
inline fun foo(body: () -> String): String = bar(body())
|
|
|
|
public fun bar(x: String): String = x |