Files
kotlin-fork/analysis/analysis-api/testData/symbols/symbolByPsi/delegateField.pretty.txt
T
Ilya Kirillov 26ec7ec296 [Analysis API] update testdata after renderer rework
The new testdata seems to be more correct or just different

^KTIJ-23268
2022-11-11 11:59:59 +01:00

16 lines
234 B
Plaintext
Vendored

class MyColor(x: kotlin.Int, y: kotlin.Int, z: kotlin.Int) {
val x: kotlin.Int
val y: kotlin.Int
val z: kotlin.Int
}
class Some {
val delegate: MyColor
get()
val lambda: kotlin.Lazy<MyColor>
val nonLazy: MyColor
}