[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
@@ -23,14 +23,14 @@ fun test2() {
fun test3() {
val f = {
val a : Int
doSmth(a)
doSmth(<!UNINITIALIZED_VARIABLE!>a<!>)
}
}
fun test4() {
doSmth {
val a : Int
doSmth(a)
doSmth(<!UNINITIALIZED_VARIABLE!>a<!>)
}
}