aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/PR569
diff options
context:
space:
mode:
Diffstat (limited to 'tests/new/PR569')
-rw-r--r--tests/new/PR569/a/IntroAnon.java22
-rw-r--r--tests/new/PR569/a/MyInterface.java7
-rw-r--r--tests/new/PR569/b/Dest.java8
3 files changed, 37 insertions, 0 deletions
diff --git a/tests/new/PR569/a/IntroAnon.java b/tests/new/PR569/a/IntroAnon.java
new file mode 100644
index 000000000..0ede9e901
--- /dev/null
+++ b/tests/new/PR569/a/IntroAnon.java
@@ -0,0 +1,22 @@
+package a;
+
+import org.aspectj.testing.Tester;
+
+import b.Dest;
+
+/** @testcase PR#569 anon class written to wrong directory */
+public class IntroAnon {
+ private static aspect MI {
+ public Object MyInterface.foo () {
+ Tester.event("foo ran");
+ return new Object(){};
+ }
+ }
+ public static void main (String args []) {
+ Tester.expectEvent("foo ran");
+ new Dest ().foo ();
+ Tester.checkAllEvents();
+ }
+} // end of class IntroAnon
+
+
diff --git a/tests/new/PR569/a/MyInterface.java b/tests/new/PR569/a/MyInterface.java
new file mode 100644
index 000000000..11ecd8d81
--- /dev/null
+++ b/tests/new/PR569/a/MyInterface.java
@@ -0,0 +1,7 @@
+package a;
+
+/** @testcase PR#569 anon class written to wrong directory */
+public interface MyInterface {
+ public Object foo ();
+}
+
diff --git a/tests/new/PR569/b/Dest.java b/tests/new/PR569/b/Dest.java
new file mode 100644
index 000000000..7e999979b
--- /dev/null
+++ b/tests/new/PR569/b/Dest.java
@@ -0,0 +1,8 @@
+package b;
+
+import a.MyInterface;
+
+/** @testcase PR#569 anon class written to wrong directory */
+public class Dest implements MyInterface { }
+
+