Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/problems/secondaryConstructorCfg.fir.txt
T
Dmitriy Novozhilov e6b5cb5216 [TD] Update diagnostics test data due to new test runners
Update includes:
- Changing syntax of `OI/`NI` tags from `<!NI;TAG!>` to `<!TAG{NI}!>`
- Fix some incorrect directives
- Change order of diagnostics in some places
- Remove ignored diagnostics from FIR test data (previously `DIAGNOSTICS` didn't work)
- Update FIR dumps in some places and add `FIR_IDENTICAL` if needed
- Replace all JAVAC_SKIP with SKIP_JAVAC directive
2020-12-16 19:52:25 +03:00

28 lines
886 B
Plaintext
Vendored

FILE: secondaryConstructorCfg.kt
public final class B : R|kotlin/Any| {
public constructor(p0: R|kotlin/String|): R|B| {
super<R|kotlin/Any|>()
}
public final val p1: R|kotlin/String| = R|<local>/p0|
public get(): R|kotlin/String|
public final val p2: R|kotlin/Int| = R|<local>/p0|.R|kotlin/String.length|
public get(): R|kotlin/Int|
public final var p3: R|kotlin/String|
public get(): R|kotlin/String|
public set(value: R|kotlin/String|): R|kotlin/Unit|
public constructor(p0: R|kotlin/String|, p1: R|kotlin/String|): R|B| {
this<R|B|>(R|<local>/p0|)
this@R|/B|.R|/B.p3| = R|<local>/p1|
}
init {
this@R|/B|.R|/B.p1| = R|<local>/p0|.R|kotlin/String.length|
this@R|/B|.R|/B.p3| = String()
}
}