added DataFlowInfoTest

This commit is contained in:
Svetlana Isakova
2014-03-05 16:27:38 +04:00
parent ab9e470ea9
commit 88f2c32724
16 changed files with 543 additions and 7 deletions
@@ -0,0 +1,13 @@
fun foo() {
var a = 1
use(a)
a = 2
use(a)
}
fun bar() {
val b: Int
b = 3
}
fun use(a: Int) = a