diff options
author | acolyer <acolyer> | 2005-09-02 17:12:43 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-09-02 17:12:43 +0000 |
commit | df46c6f728502a74b2d042a0a955eab1326ba76a (patch) | |
tree | 5d0e149d509e85b685f532aee75c984afd2e09f1 /tests/bugs150/pr99125/p2/pr99125.aj | |
parent | 2c88c598b950136bf54376eecbf58f14a19666c4 (diff) | |
download | aspectj-df46c6f728502a74b2d042a0a955eab1326ba76a.tar.gz aspectj-df46c6f728502a74b2d042a0a955eab1326ba76a.zip |
tests and fix for pr99125 - duplicate members in interfaces after binary weaving
Diffstat (limited to 'tests/bugs150/pr99125/p2/pr99125.aj')
-rw-r--r-- | tests/bugs150/pr99125/p2/pr99125.aj | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/bugs150/pr99125/p2/pr99125.aj b/tests/bugs150/pr99125/p2/pr99125.aj new file mode 100644 index 000000000..4f860c301 --- /dev/null +++ b/tests/bugs150/pr99125/p2/pr99125.aj @@ -0,0 +1,11 @@ +package p; +public class pr99125 implements J { + + public static void main(String[] args) { + new pr99125().foo(); + } + + public void foo() {} + + public void aMethod() {} +} |