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
35 lines
1.2 KiB
Kotlin
Vendored
35 lines
1.2 KiB
Kotlin
Vendored
/*
|
|
* KOTLIN DIAGNOSTICS SPEC TEST (NEGATIVE)
|
|
*
|
|
* SPEC VERSION: 0.1-152
|
|
* PRIMARY LINKS: expressions, when-expression -> paragraph 5 -> sentence 1
|
|
* expressions, when-expression, exhaustive-when-expressions -> paragraph 2 -> sentence 3
|
|
* control--and-data-flow-analysis, performing-analysis-on-the-control-flow-graph, variable-initialization-analysis -> paragraph 2 -> sentence 1
|
|
* control--and-data-flow-analysis, performing-analysis-on-the-control-flow-graph, variable-initialization-analysis -> paragraph 2 -> sentence 3
|
|
* control--and-data-flow-analysis, performing-analysis-on-the-control-flow-graph, variable-initialization-analysis -> paragraph 3 -> sentence 2
|
|
* control--and-data-flow-analysis, performing-analysis-on-the-control-flow-graph, variable-initialization-analysis -> paragraph 3 -> sentence 3
|
|
*/
|
|
|
|
fun foo(a: Boolean, b: Boolean): Int {
|
|
val x: Int
|
|
if (a) {
|
|
x = 1
|
|
}
|
|
<!DEBUG_INFO_IMPLICIT_EXHAUSTIVE!>when (b) {
|
|
true -> <!VAL_REASSIGNMENT!>x<!> = 2
|
|
false -> x = 3
|
|
}<!>
|
|
return x
|
|
}
|
|
|
|
fun bar(a: Boolean, b: Boolean): Int {
|
|
val x: Int
|
|
if (a) {
|
|
x = 1
|
|
}
|
|
when (b) {
|
|
false -> <!VAL_REASSIGNMENT!>x<!> = 3
|
|
}
|
|
return <!UNINITIALIZED_VARIABLE!>x<!>
|
|
}
|