mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
6 lines
124 B
Java
6 lines
124 B
Java
// "Replace explicit type with 'var'" "true"
|
|
class Main {
|
|
void m(String[] args) {
|
|
for (var arg : args) ;
|
|
}
|
|
} |