// "Bind method parameters to fields" "true-preview" class Bar { private Class myA; private int myB; void get(Class a, int b) { myA = a; myB = b; } }