LVTI: var -> explicit type (IDEA-179177)

This commit is contained in:
Anna Kozlova
2017-09-26 16:09:46 +02:00
parent f1028073cb
commit 0ca243309f
15 changed files with 214 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
// "Replace 'var' with explicit type" "true"
class Main {
void m(java.util.List<? extends String> args){
<caret>var s = args.get(0);
}
}