Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/expresssions/localConstructor.txt
T
2020-03-19 09:51:01 +03:00

12 lines
283 B
Plaintext
Vendored

FILE: localConstructor.kt
public final fun test(): R|kotlin/Unit| {
local final class Local : R|kotlin/Any| {
public constructor(): R|Local| {
super<R|kotlin/Any|>()
}
}
lval l: R|Local| = R|/Local.Local|()
}