Browse Source

@testcase type not imported in around advice

tags/v1_1_0_RC1
wisberg 21 years ago
parent
commit
c6d8c34761
2 changed files with 19 additions and 0 deletions
  1. 7
    0
      tests/ajcTestsFailing.xml
  2. 12
    0
      tests/errors/TypeNotImportedInAroundCE.java

+ 7
- 0
tests/ajcTestsFailing.xml 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>

+ 12
- 0
tests/errors/TypeNotImportedInAroundCE.java 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
}
}

Loading…
Cancel
Save