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