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