update tests according to package properties check

This commit is contained in:
Svetlana Isakova
2012-12-18 15:55:49 +04:00
parent 11bc01795f
commit 58de1cabbc
6 changed files with 18 additions and 9 deletions
@@ -15,7 +15,7 @@ val o = object {
<!INVISIBLE_SETTER!>p.x<!> = 4
val z : Int
doSmth(<!UNINITIALIZED_VARIABLE, UNINITIALIZED_VARIABLE!>z<!>)
doSmth(<!UNINITIALIZED_VARIABLE!>z<!>)
}
}
@@ -24,4 +24,13 @@ val g = { ->
doSmth(<!UNINITIALIZED_VARIABLE!>x<!>)
}
class A {
val a : Int = 1
get() {
val x : Int
doSmth(<!UNINITIALIZED_VARIABLE!>x<!>)
return $a
}
}
fun doSmth(i: Int) = i