Files
kotlin-fork/compiler/testData/ir/irText/firProblems/delegatedSetterShouldBeSpecialized.kt
T
Mikhail Glukhikh 20cb075e56 K2: fix calculating property reference type in delegated setter
This commit is an accidentally forgotten part of the KT-61045 fix
#KT-61720 Fixed
2023-09-08 15:35:10 +00:00

10 lines
151 B
Kotlin
Vendored

// FIR_IDENTICAL
// WITH_REFLECT
// SKIP_SIGNATURE_DUMP
var topLevelInt: Int = 0
class MyClass {
var delegatedToTopLevel: Int by ::topLevelInt
}