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.

MissingLineNumbers.java 313B

123456789101112131415161718
  1. public class MissingLineNumbers {
  2. public static void main(String []argv) {
  3. new MissingLineNumbers().foo();
  4. }
  5. public void foo() {
  6. System.err.println("hello");
  7. System.err.println("world");
  8. }
  9. }
  10. aspect X {
  11. void around(): call(* foo(..)) {
  12. new RuntimeException().printStackTrace();
  13. }
  14. }