blob: afac816dc6aba99812b76abac9b5d2794449716c [file] [log] [blame]
class Test {
private int a;
private final int b;
private int c;
private final int d;
public Test(int b, int d) {
this.b = b;
this.d = d;
}
}