e6b5cb5216
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
48 lines
1.4 KiB
Plaintext
Vendored
48 lines
1.4 KiB
Plaintext
Vendored
FILE: companion.kt
|
|
public abstract class Some : R|kotlin/Any| {
|
|
public constructor(): R|test/Some| {
|
|
super<R|kotlin/Any|>()
|
|
}
|
|
|
|
public final companion object Companion : R|kotlin/Any| {
|
|
private constructor(): R|test/Some.Companion| {
|
|
super<R|kotlin/Any|>()
|
|
}
|
|
|
|
public final class InCompanion : R|kotlin/Any| {
|
|
public constructor(): R|test/Some.Companion.InCompanion| {
|
|
super<R|kotlin/Any|>()
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public abstract val x: R|test/Some.Companion.InCompanion|
|
|
public get(): R|test/Some.Companion.InCompanion|
|
|
|
|
}
|
|
public abstract class Another : R|kotlin/Any| {
|
|
public constructor(): R|test/Another| {
|
|
super<R|kotlin/Any|>()
|
|
}
|
|
|
|
public final companion object NamedCompanion : R|kotlin/Any| {
|
|
private constructor(): R|test/Another.NamedCompanion| {
|
|
super<R|kotlin/Any|>()
|
|
}
|
|
|
|
public final class InCompanion : R|kotlin/Any| {
|
|
public constructor(): R|test/Another.NamedCompanion.InCompanion| {
|
|
super<R|kotlin/Any|>()
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public abstract val x: R|test/Another.NamedCompanion.InCompanion|
|
|
public get(): R|test/Another.NamedCompanion.InCompanion|
|
|
|
|
}
|