public class MoreFields {
    void testOtherFieds(Test other, int f) {
        other.f = f;
    }
}

class Test {
    int f;
}
