aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/PR569
diff options
context:
space:
mode:
authorwisberg <wisberg>2002-12-16 18:51:06 +0000
committerwisberg <wisberg>2002-12-16 18:51:06 +0000
commit144143c2970a1e874d74cdbd0f8c622d4282a3c3 (patch)
treeb12383d3d9e76c7e1f25f7fbec83051ef17f81fb /tests/new/PR569
parentfafae443719b26159ab2d7dac1c9b46b5e00b671 (diff)
downloadaspectj-144143c2970a1e874d74cdbd0f8c622d4282a3c3.tar.gz
aspectj-144143c2970a1e874d74cdbd0f8c622d4282a3c3.zip
initial version
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 { }
+
+