    package exceptions;
    /** A test. */
    public class TestExceptions1 {       
       
        /** A mystery method. */         
        public void test1()
        {                             
           Object x = null;
           if (x.equals(null)) {
	       System.out.println("hmmm");
	   } else {
	       System.out.println("oh");
	   }
           System.out.println("got to end of test1");
        }                             

        /** Run the test. */
	public static void main(String[] args) {
	    new TestExceptions1().test1();
	}
    }                               

