da9f0e7af8
Sometimes there are legitimate reasons to have two separate signature dumps for K1 and K2. ^KT-61797 Fixed
9 lines
128 B
Kotlin
Vendored
9 lines
128 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// WITH_REFLECT
|
|
|
|
var topLevelInt: Int = 0
|
|
|
|
class MyClass {
|
|
var delegatedToTopLevel: Int by ::topLevelInt
|
|
}
|