keep annotations for explicit to var fixes (IDEA-193876)

This commit is contained in:
Anna Kozlova
2018-06-14 12:08:25 +03:00
parent 8b375f976d
commit 1e7e741009
7 changed files with 20 additions and 12 deletions

View File

@@ -1,6 +1,7 @@
// "Replace explicit type with 'var'" "true"
class Main {
void m(String[] args) {
for (var arg : args) ;
for (@Anno var arg : args) ;
}
}
}
@interface Anno {}