summaryrefslogtreecommitdiffstats
path: root/tests/harness/LenientTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/harness/LenientTest.java')
-rw-r--r--tests/harness/LenientTest.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/harness/LenientTest.java b/tests/harness/LenientTest.java
new file mode 100644
index 000000000..798f4439a
--- /dev/null
+++ b/tests/harness/LenientTest.java
@@ -0,0 +1,11 @@
+
+import org.aspectj.testing.Tester;
+
+public class LenientTest {
+ public void m() {
+ return;; // CE 6 in -lenient only
+ }
+ public static void main(String[] args) {
+ Tester.check(null != new LenientTest(), "no test");
+ }
+}