mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 10:16:28 +07:00
GitOrigin-RevId: 6b6405ee4491ad1d58947547c40df6fb2d291ab7
7 lines
157 B
Java
7 lines
157 B
Java
// "Replace explicit type with 'var'" "true-preview"
|
|
class Main {
|
|
void m(String[] args) {
|
|
for (@Anno var arg : args) ;
|
|
}
|
|
}
|
|
@interface Anno {} |