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.

ConstructorArgTracing.java 350B

12345678910111213141516
  1. // from Bug#: 28852
  2. public class ConstructorArgTracing {
  3. public ConstructorArgTracing(int arg) {
  4. }
  5. public static void main(String[] args) {
  6. ConstructorArgTracing account = new ConstructorArgTracing(12345);
  7. }
  8. }
  9. aspect TraceAspect {
  10. before() : !within(TraceAspect) {
  11. System.out.println(thisJoinPoint);
  12. }
  13. }