Fixed StackOverflow in CanBeValInspection.kt

This commit is contained in:
Valentin Kipyatkov
2016-04-07 11:31:46 +03:00
parent 22a4bbe1aa
commit a9fe999e0e
3 changed files with 16 additions and 1 deletions
@@ -0,0 +1,6 @@
fun foo() {
var a: Int
a = 1
for (i in 1..10)
print(i)
}