do not miss repeated 'uninitialized' error for properties
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
package aa
|
||||
|
||||
val a : Int = <!UNINITIALIZED_VARIABLE!>b<!>
|
||||
val b : Int = a + <!UNINITIALIZED_VARIABLE!>b<!>
|
||||
|
||||
class C {
|
||||
val a : Int = <!UNINITIALIZED_VARIABLE!>b<!>
|
||||
val b : Int = a + <!UNINITIALIZED_VARIABLE!>b<!>
|
||||
}
|
||||
|
||||
fun foo() {
|
||||
val a : Int
|
||||
<!UNINITIALIZED_VARIABLE!>a<!> + 1
|
||||
a + 1
|
||||
}
|
||||
Reference in New Issue
Block a user