Fixed annotation resolve for loop parameter or catched exceptions type

This commit is contained in:
Mikhail Glukhikh
2015-06-09 16:14:00 +03:00
parent 731e5d85a4
commit f9fe8cd341
7 changed files with 61 additions and 9 deletions
@@ -0,0 +1,7 @@
annotation class My
fun foo() {
for (i: @My Int in 0..41) {
if (i == 13) return
}
}