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
40 lines
1.1 KiB
Kotlin
Vendored
40 lines
1.1 KiB
Kotlin
Vendored
// !WITH_NEW_INFERENCE
|
|
fun foo(x : String?, y : String?) {
|
|
if (y != null && x == y) {
|
|
// Both not null
|
|
<!DEBUG_INFO_SMARTCAST!>x<!>.length
|
|
<!DEBUG_INFO_SMARTCAST!>y<!>.length
|
|
}
|
|
else {
|
|
x<!UNSAFE_CALL!>.<!>length
|
|
y<!UNSAFE_CALL!>.<!>length
|
|
}
|
|
if (y != null || x == <!DEBUG_INFO_CONSTANT!>y<!>) {
|
|
x<!UNSAFE_CALL!>.<!>length
|
|
y<!UNSAFE_CALL!>.<!>length
|
|
}
|
|
else {
|
|
// y == null but x != y
|
|
<!DEBUG_INFO_SMARTCAST!>x<!>.length
|
|
<!DEBUG_INFO_CONSTANT{OI}!>y<!><!UNSAFE_CALL!>.<!>length
|
|
}
|
|
if (y == null && x != <!DEBUG_INFO_CONSTANT!>y<!>) {
|
|
// y == null but x != y
|
|
<!DEBUG_INFO_SMARTCAST!>x<!>.length
|
|
<!DEBUG_INFO_CONSTANT{OI}!>y<!><!UNSAFE_CALL!>.<!>length
|
|
}
|
|
else {
|
|
x<!UNSAFE_CALL!>.<!>length
|
|
y<!UNSAFE_CALL!>.<!>length
|
|
}
|
|
if (y == null || x != y) {
|
|
x<!UNSAFE_CALL!>.<!>length
|
|
y<!UNSAFE_CALL!>.<!>length
|
|
}
|
|
else {
|
|
// Both not null
|
|
<!DEBUG_INFO_SMARTCAST!>x<!>.length
|
|
<!DEBUG_INFO_SMARTCAST!>y<!>.length
|
|
}
|
|
}
|