// A $static$ field CANNOT access instance variables and instance methods
// when the $static$ field is accessed through a class.
// Example: The $main$ method is $static$.

public class static_main {

    static int x;
    int y;

    public static void main(String[] args) {

	System.out.println(x);
	// System.out.println(y); // won't work! y is an instance variable

    }
}