mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 17:38:08 +07:00
GitOrigin-RevId: de9da180223f231638eb51804b7ed9c26c36d772
7 lines
152 B
Java
7 lines
152 B
Java
// "Remove redundant assignment" "true-preview"
|
|
class A {
|
|
public static void main(String[] args) {
|
|
int x = 3 * 4;
|
|
System.out.println(x);
|
|
}
|
|
} |