/**
 * A class that contains a static method that
 * (incorrectly) uses a non-static attribute
 */
public class StaticMethods1
{
    private  String          error;

    /**
     * An example method
     *
     * What Happens and Why?
     */
    public static void main(String[] args)
    {
			error = "Too small!";

			System.out.println(error);
    }
}
