Files

9 lines
133 B
Java

class Test {
private String[] str;
{
this.str = new String[]{"a", "b", "c"};
String[] str = this.str;
}
}