summaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr99125/p
diff options
context:
space:
mode:
authoracolyer <acolyer>2005-09-02 17:12:43 +0000
committeracolyer <acolyer>2005-09-02 17:12:43 +0000
commitdf46c6f728502a74b2d042a0a955eab1326ba76a (patch)
tree5d0e149d509e85b685f532aee75c984afd2e09f1 /tests/bugs150/pr99125/p
parent2c88c598b950136bf54376eecbf58f14a19666c4 (diff)
downloadaspectj-df46c6f728502a74b2d042a0a955eab1326ba76a.tar.gz
aspectj-df46c6f728502a74b2d042a0a955eab1326ba76a.zip
tests and fix for pr99125 - duplicate members in interfaces after binary weaving
Diffstat (limited to 'tests/bugs150/pr99125/p')
-rw-r--r--tests/bugs150/pr99125/p/I.java6
-rw-r--r--tests/bugs150/pr99125/p/J.java4
-rw-r--r--tests/bugs150/pr99125/p/pr99125.aj10
3 files changed, 20 insertions, 0 deletions
diff --git a/tests/bugs150/pr99125/p/I.java b/tests/bugs150/pr99125/p/I.java
new file mode 100644
index 000000000..fbbd7ace4
--- /dev/null
+++ b/tests/bugs150/pr99125/p/I.java
@@ -0,0 +1,6 @@
+package p;
+public interface I {
+
+ void foo();
+
+} \ No newline at end of file
diff --git a/tests/bugs150/pr99125/p/J.java b/tests/bugs150/pr99125/p/J.java
new file mode 100644
index 000000000..fc1331005
--- /dev/null
+++ b/tests/bugs150/pr99125/p/J.java
@@ -0,0 +1,4 @@
+package p;
+
+public
+interface J extends I {} \ No newline at end of file
diff --git a/tests/bugs150/pr99125/p/pr99125.aj b/tests/bugs150/pr99125/p/pr99125.aj
new file mode 100644
index 000000000..b4969d059
--- /dev/null
+++ b/tests/bugs150/pr99125/p/pr99125.aj
@@ -0,0 +1,10 @@
+package p;
+public class pr99125 implements J {
+
+ public static void main(String[] args) {
+ new pr99125().foo();
+ }
+
+ public void foo() {}
+
+}