blob: eb5bdbd4b3df2cd0a60a0017b9090f486eb8090b [file] [log] [blame]
// "Assign Parameter to Field 'myId'" "true"
class Person {
int myId;
void f(int id) {
myId = id;<caret>
}
}