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

5 lines
82 B
Java

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