Bug 364741

Summary: Ajc allows multiple super() calls in inter-type constructor body
Product: [Tools] AspectJ Reporter: Roman Shevchenko <trespasserw>
Component: CompilerAssignee: aspectj inbox <aspectj-inbox>
Status: NEW --- QA Contact:
Severity: normal    
Priority: P3    
Version: 1.6.12   
Target Milestone: ---   
Hardware: All   
OS: All   
Whiteboard:

Description Roman Shevchenko CLA 2011-11-24 12:20:36 EST
E.g.:
public aspect Foo_Aspect {
    public Foo.new() {
        super();
        super();
    }
}