d5372521f1
#KT-12126 #KT-12189 #KT-23628 #KT-24209 #KT-34338 #KT-47279 #KT-48498
19 lines
275 B
Kotlin
Vendored
19 lines
275 B
Kotlin
Vendored
// FILE: 1.kt
|
|
|
|
package x
|
|
|
|
operator fun String.provideDelegate(thisRef: Any?, prop: Any?) = this
|
|
|
|
operator fun String.getValue(thisRef: Any?, prop: Any?) = this
|
|
|
|
inline fun foo(): String {
|
|
val x by "OK"
|
|
return x
|
|
}
|
|
|
|
// FILE: 2.kt
|
|
|
|
import x.*
|
|
|
|
fun box(): String = foo()
|