blob: c13b0ab9bee2a11193643201f22fc4c51f4591e9 [file] [log] [blame]
class Type {
private int myField;
public void meth(byte pb, short ps, char pc, int pi, int pl, int pf, int pd) {
myField = pb;
myField = ps;
myField = pc;
myField = pi;
myField = pl;
myField = pf;
myField = pd;
}
}