1 2 3 4 5 6 7 8 9 10 11 12
package aspects; import app.Main; // WARNING: do not change message text without changing test specification public privileged aspect ConstructorExecutionWarning { declare warning : execution(Main.new()) // 23 (bug: 8) : "execution(Main.new())"; }