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.

Code.java 237B

123456789101112
  1. import java.io.*;
  2. public class Code {
  3. public void m() { // throws IOException {
  4. try (FileReader reader = new FileReader("test.txt")) {
  5. System.out.println("");
  6. }
  7. }
  8. }
  9. aspect X {
  10. declare soft: IOException: within(*);
  11. }