blob: 16005821b32cda23dd96483101ead80e7ae750b0 [file] [log] [blame]
package static_out;
public class TestStaticImportReadWrite {
private static int x= 0;
public static void setX(int x) {
TestStaticImportReadWrite.x = x;
}
public static int getX() {
return x;
}
}