Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/duplicateJvmSignature/delegatedProperty.kt
T

8 lines
207 B
Kotlin
Vendored

// FIR_IDENTICAL
import kotlin.properties.ReadWriteProperty
import kotlin.properties.Delegates
class C {
val `x$delegate`: ReadWriteProperty<Any, Any>? = null
val x: String? by Delegates.notNull()
}