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

5 lines
93 B
Java

// "Remove redundant initializer" "true-preview"
class A {
int n = <caret>0;
{ n = 1; }
}