Analyze Data Flow: Initial implementation

#KT-11994 In Progress
This commit is contained in:
Alexey Sedunov
2017-05-18 18:27:21 +03:00
parent 3f104833ba
commit 858b454138
92 changed files with 1450 additions and 8 deletions
+9
View File
@@ -0,0 +1,9 @@
// FLOW: IN
fun test(m: Int, n: Int) {
val <caret>x = when (m) {
1 -> 1
2 -> n
else -> 0
}
}