summaryrefslogtreecommitdiffstats
path: root/tests/new/binaryWarnings/src/aspects/ConstructorExecutionWarning.java
blob: fa55066d4911316d200887ebd8c3d7a00ccc872e (plain)
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())";

}