blob: 90c971f09f26c5f7e45ef58ec31b6836a8f0fc47 [file] [log] [blame]
package p;
public class A {
public int test = 0;
public static void main(String[] args) {
A test = new A();
test.test = 1;
}
}