blob: 73f2528b681098d90eb3f77036b99632eb5200e5 [file] [log] [blame]
package p;
record A(int g){
A{
this.g= g;
}
public void val(int f) {
}
public int getVal() {
return g();
}
public int g() {
return g;
}
}