aboutsummaryrefslogtreecommitdiffstats
path: root/tests/errors/TypeNotImportedInAroundCE.java
blob: 01e3f015018895c48e18c0f682d01b8f24d30c59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class C { void m() {  } }


/** @testcase type not imported in around advice */
aspect A {
    void around() : execution(void m()) {
        Rectangle expected = null;      // CE 10
    }
}