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
30 lines
915 B
Plaintext
Vendored
30 lines
915 B
Plaintext
Vendored
FILE: mixingImplicitAndExplicitReceivers.kt
|
|
public final fun takeString(s: R|kotlin/String|): R|kotlin/Unit| {
|
|
}
|
|
public final class Wrapper : R|kotlin/Any| {
|
|
public constructor(s: R|kotlin/String?|): R|Wrapper| {
|
|
super<R|kotlin/Any|>()
|
|
}
|
|
|
|
public final val s: R|kotlin/String?| = R|<local>/s|
|
|
public get(): R|kotlin/String?|
|
|
|
|
public final fun withThis(): R|kotlin/Unit| {
|
|
when () {
|
|
!=(this@R|/Wrapper|.R|/Wrapper.s|, Null(null)) -> {
|
|
R|/takeString|(this@R|/Wrapper|.R|/Wrapper.s|)
|
|
}
|
|
}
|
|
|
|
when () {
|
|
!=(this@R|/Wrapper|.R|/Wrapper.s|, Null(null)) -> {
|
|
R|/takeString|(this@R|/Wrapper|.R|/Wrapper.s|)
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
public final fun takeString(s: R|kotlin/String|): R|kotlin/Unit| {
|
|
}
|