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.

A.java 200B

1234567
  1. /** @testcase PR#57432 NPE's when writing some declare error */
  2. aspect A {
  3. declare error : get(java.io.PrintStream System.out)
  4. || call(void Throwable.printStackTrace(..))
  5. : "NPE";
  6. }