@testcase type not imported in around advice

This commit is contained in:
wisberg 2003-03-12 20:46:21 +00:00
parent db37189ceb
commit c6d8c34761
2 changed files with 19 additions and 0 deletions

View File

@ -49,4 +49,11 @@
<run class="AspectInitError"/>
</ajc-test>
<ajc-test dir="errors"
title="type not imported in around advice">
<compile files="TypeNotImportedInAroundCE.java">
<message kind="error" line="10"/>
</compile>
</ajc-test>
</suite>

View File

@ -0,0 +1,12 @@
class C { void m() { } }
/** @testcase type not imported in around advice */
aspect A {
void around() : execution(void m()) {
Rectangle expected = null; // CE 10
}
}