Bug 364741 - Ajc allows multiple super() calls in inter-type constructor body
Summary: Ajc allows multiple super() calls in inter-type constructor body
Status: NEW
Alias: None
Product: AspectJ
Classification: Tools
Component: Compiler (show other bugs)
Version: 1.6.12   Edit
Hardware: All All
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: aspectj inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-11-24 12:20 EST by Roman Shevchenko CLA
Modified: 2011-11-24 12:20 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Roman Shevchenko CLA 2011-11-24 12:20:36 EST
E.g.:
public aspect Foo_Aspect {
    public Foo.new() {
        super();
        super();
    }
}