summaryrefslogtreecommitdiffstats
path: root/tests/bugs
diff options
context:
space:
mode:
authoracolyer <acolyer>2004-08-04 12:04:41 +0000
committeracolyer <acolyer>2004-08-04 12:04:41 +0000
commit0f211e17cac9b031ab8d9115f9030b3e65d3927a (patch)
treecabe16f0e367daaa4b28685e09f5b0bcd55bb43d /tests/bugs
parent9a051d348a240095e56ead5485c2dba8cf6ad4a7 (diff)
downloadaspectj-0f211e17cac9b031ab8d9115f9030b3e65d3927a.tar.gz
aspectj-0f211e17cac9b031ab8d9115f9030b3e65d3927a.zip
Spring cleaning in the test suite. Docs for AjcTestCase and XMLBasedAjcTestCase
added in docs dir.
Diffstat (limited to 'tests/bugs')
-rw-r--r--tests/bugs/Source14Assert.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/bugs/Source14Assert.java b/tests/bugs/Source14Assert.java
new file mode 100644
index 000000000..bd19a97f6
--- /dev/null
+++ b/tests/bugs/Source14Assert.java
@@ -0,0 +1,13 @@
+
+
+public class Source14Assert {
+ private void method1() {
+ try {
+ invoke();
+ } catch (Throwable throwable) {
+ assert false : throwable;
+ }
+ }
+ private void invoke() {}
+ public static void main(String[] args) {}
+} \ No newline at end of file