blob: 8fe63b4024dbed92f2d2b0b4d8141cba7e8c8df5 [file] [log] [blame]
// "Remove redundant assignment" "true"
class A {
public static void main(String[] args) {
int x = 3 * 4;
System.out.println(x);
}
}