diff options
author | jhugunin <jhugunin> | 2003-04-24 21:05:44 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2003-04-24 21:05:44 +0000 |
commit | 598c72655e13bc4f65d2e357ab645b05b69821ca (patch) | |
tree | fb411c9493c52877a5d2480a0e668f3aec8242b8 /tests/ajcTests.xml | |
parent | 2b231e9fb3e1c1edbca2c28865e7e0901c98c0de (diff) | |
download | aspectj-598c72655e13bc4f65d2e357ab645b05b69821ca.tar.gz aspectj-598c72655e13bc4f65d2e357ab645b05b69821ca.zip |
expanded tests and fix for
Bugzilla Bug 36778
ClassFormatError due to empty interface supertype
Diffstat (limited to 'tests/ajcTests.xml')
-rw-r--r-- | tests/ajcTests.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ajcTests.xml b/tests/ajcTests.xml index 7bc3af750..4f869e5e4 100644 --- a/tests/ajcTests.xml +++ b/tests/ajcTests.xml @@ -5857,4 +5857,19 @@ <run class="TryFinallyInAround"/> </ajc-test> + <ajc-test dir="new" pr="36778" + title="advise join points in subclass of empty interface"> + <compile files="EmptyInterface.java"/> + <run class="EmptyInterface"/> + </ajc-test> + + <ajc-test dir="new" pr="36778" + title="can't put around advice on interface static initializer" + comment="this tests for a nice message given a compiler limitation"> + <compile files="EmptyInterfaceCE.java"> + <message kind="error" line="20"/> + <message kind="error" line="23"/> + </compile> + </ajc-test> + </suite> |