Sfoglia il codice sorgente

@testcase type not imported in around advice

tags/v1_1_0_RC1
wisberg 21 anni fa
parent
commit
c6d8c34761
2 ha cambiato i file con 19 aggiunte e 0 eliminazioni
  1. 7
    0
      tests/ajcTestsFailing.xml
  2. 12
    0
      tests/errors/TypeNotImportedInAroundCE.java

+ 7
- 0
tests/ajcTestsFailing.xml Vedi 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 Vedi 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…
Annulla
Salva