diff options
author | jhugunin <jhugunin> | 2003-07-24 21:37:04 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2003-07-24 21:37:04 +0000 |
commit | 8060fec634b2f790599cbb71e660d8a0c2231e43 (patch) | |
tree | cde41c10c5b84b4e8efacadbb26962b9c7097104 /tests | |
parent | 01b77ac07d292a8bdafc9c10112f4f89bae204ec (diff) | |
download | aspectj-8060fec634b2f790599cbb71e660d8a0c2231e43.tar.gz aspectj-8060fec634b2f790599cbb71e660d8a0c2231e43.zip |
fix and moved test for Bugzilla Bug 39711
Class Literals as non final fields
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ajcTests.xml | 6 | ||||
-rw-r--r-- | tests/ajcTestsFailing.xml | 6 |
2 files changed, 7 insertions, 5 deletions
diff --git a/tests/ajcTests.xml b/tests/ajcTests.xml index a7c73d20d..5cccbc37b 100644 --- a/tests/ajcTests.xml +++ b/tests/ajcTests.xml @@ -6456,4 +6456,10 @@ <compile files="CloneMethod.java"/> <run class="CloneMethod"/> </ajc-test> + + <ajc-test dir="bugs" pr="39711" + title="Class Literals as non final fields (also assert, and this$0)"> + <compile files="ClassLiteralField.java" options="-source14"/> + <run class="ClassLiteralField"/> + </ajc-test> </suite> diff --git a/tests/ajcTestsFailing.xml b/tests/ajcTestsFailing.xml index cd8e52f6e..ddc6cc1dd 100644 --- a/tests/ajcTestsFailing.xml +++ b/tests/ajcTestsFailing.xml @@ -4,9 +4,5 @@ <!-- contains valid tests that the compiler has never passed --> <suite> - <ajc-test dir="bugs" pr="39711" - title="Class Literals as non final fields (also assert, and this$0)"> - <compile files="ClassLiteralField.java" options="-source14"/> - <run class="ClassLiteralField"/> - </ajc-test> + </suite> |