Files
kotlin-fork/plugins/uast-kotlin/testData/Delegate.kt
T
Jinseong Jeon 7f627ab480 FIR UAST: track all legacy test data since facade class is converted
These are mostly mechanical changes.
2021-05-06 20:19:29 +02:00

10 lines
215 B
Kotlin
Vendored

class MyColor(val x: Int, val y: Int, val z: Int)
class Some {
val delegate by lazy { MyColor(0x12 /* constant = 18 */, 2, 3) }
val lambda = lazy { MyColor(1, 2, 3) }
val nonLazy = MyColor(1, 2, 3)
}