Files
2022-07-29 17:55:14 +00:00

7 lines
110 B
Java

// "Remove redundant assignment" "true-preview"
class A {
static int n;
static {
}
static { n = 2; }
}