Files
Roman Golyshev 642591770e [FIR] Calculate lazy initializers in properties with backing fields
More tests should be added in the future
2021-09-15 18:33:43 +00:00

10 lines
315 B
Plaintext
Vendored

FILE: propertyWithBackingField.kt
public? final? fun resolveMe(): R|kotlin/Unit| {
receive#(property#)
}
public? final? val property: Int
private <explicit backing field>: Int = IntegerLiteral(10)
public? get(): Int
public? final? fun receive(s: Int): R|kotlin/Unit| {
}