Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolveWithStdlib/properties/backingField/explicitBackingFieldInInterface.fir.txt
T
2021-09-15 18:33:43 +00:00

8 lines
260 B
Plaintext
Vendored

FILE: explicitBackingFieldInInterface.kt
public abstract interface I : R|kotlin/Any| {
public abstract val it: R|kotlin/Number|
private <explicit backing field>: R|kotlin/Int| = Int(10)
public get(): R|kotlin/Number|
}