Files
kotlin-fork/compiler/testData/loadJava/compiledJava/PrivateMembers.fir.txt
T
Mikhail Glukhikh 2476c0299f FIR Java: fix constructor enhancements
Before this commit,
we generated regular member functions as constructor enhancement.
Now, we generate constructors as constructor enhancement.
2019-04-23 11:41:05 +03:00

17 lines
518 B
Plaintext
Vendored

public open class PrivateMembers : R|java/lang/Object| {
private open var field: R|kotlin/Int|
private get(): R|kotlin/Int|
private set(value: R|kotlin/Int|): kotlin/Unit
private open static var staticField: R|kotlin/Int|
private get(): R|kotlin/Int|
private set(value: R|kotlin/Int|): kotlin/Unit
private open operator fun method(): R|kotlin/Unit|
private open static operator fun staticMethod(): R|kotlin/Unit|
private constructor(): R|test/PrivateMembers|
}