[FIR] Add checker for uninitialized properties

This commit is contained in:
Dmitriy Novozhilov
2020-06-17 11:51:15 +03:00
parent 25621d699b
commit 26458875d5
96 changed files with 1476 additions and 1358 deletions
@@ -21,7 +21,7 @@ fun test_1() {
inlineRun {
x = 1
}
x.inc()
<!UNINITIALIZED_VARIABLE!>x<!>.inc()
}
fun test_2() {
@@ -29,5 +29,5 @@ fun test_2() {
myRun {
x = 1
}
x.inc()
<!UNINITIALIZED_VARIABLE!>x<!>.inc()
}
@@ -21,7 +21,7 @@ fun test_1() {
inlineRun {
x = 1
}
x.inc()
<!UNINITIALIZED_VARIABLE!>x<!>.inc()
}
fun test_2() {
@@ -29,5 +29,5 @@ fun test_2() {
myRun {
x = 1
}
x.inc()
<!UNINITIALIZED_VARIABLE!>x<!>.inc()
}