Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-dev] aspectJ compiler crashes - is this a bug?

Hi 
   while experimenting with aspectJ 1.1.1, I found
that the compiler crashes while compiling this tiny
piece of code. The compiler produces a dump saying
that this could be a bug.
Can someone clarify why the compiler is crashing? I
havent' included the compiler dump because this is a
very small piece of code:

-----------------------------------------------------
  class test {
    public int f(int a, float s) { return 1; }
  }

  aspect oops {
    pointcut args_only() : args(int, int);

    after() : args_only() {
    }
  }
-----------------------------------------------------

Thanks


__________________________________
Do you Yahoo!?
Yahoo! Search - Find what you’re looking for faster
http://search.yahoo.com


Back to the top