2baed77598
Extract JVM names to common JvmNames
12 lines
370 B
Kotlin
Vendored
12 lines
370 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !DIAGNOSTICS: -UNUSED_ANONYMOUS_PARAMETER
|
|
import kotlin.properties.Delegates
|
|
|
|
class My {
|
|
<!JVM_SYNTHETIC_ON_DELEGATE!>@delegate:JvmSynthetic<!> val s: String by lazy { "s" }
|
|
|
|
// Both Ok
|
|
@get:JvmSynthetic val t: String by lazy { "t" }
|
|
@set:JvmSynthetic var z: String by Delegates.observable("?") { prop, old, new -> old.hashCode() }
|
|
}
|