You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

NulIOException2.java 504B

12345678910111213141516
  1. import org.aspectj.testing.Tester;
  2. class Super {
  3. Super(Object o){}
  4. }
  5. /** windows treats filename "nul" specially, like /dev/null on unix */
  6. public class NulIOException2 extends Super {
  7. public static void main(String[] args) {
  8. Object nul = new Object(); // @testcase nul as identifier
  9. Object p = new NulIOException2(nul);
  10. Tester.check(null != nul, "null nul");
  11. Tester.check(null != p, "null NulIOException2");
  12. }
  13. NulIOException2(Object o) { super(o); }
  14. }