Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/inline/InlineReifiedPropertyMultifile.kt
T
Alexander Udalov b257b03152 JVM IR: do not generate JvmName on multifile parts
#KT-36970 Fixed
2020-10-13 16:40:52 +02:00

12 lines
161 B
Kotlin
Vendored

// WITH_RUNTIME
@file:[JvmName("Foo") JvmMultifileClass]
package test
fun foo() {
"".extProp
}
inline val <reified Z> Z.extProp: String
get() = "123"