/* * Created on Mar 10, 2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ /** * @author perkins * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ public class AssertTest { public static void main(String[] args) { System.out.println("hi"); assert false; System.out.println("howdy"); } }