mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
13 lines
187 B
Kotlin
Vendored
13 lines
187 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
// WITH_RUNTIME
|
|
|
|
@file:[JvmName("Foo") JvmMultifileClass]
|
|
package test
|
|
|
|
fun foo() {
|
|
"".extProp
|
|
}
|
|
|
|
inline val <reified Z> Z.extProp: String
|
|
get() = "123"
|