diff options
author | jhugunin <jhugunin> | 2003-04-10 22:32:40 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2003-04-10 22:32:40 +0000 |
commit | 11b3b0740b66f1d962b5179ece2f2d23e88f040b (patch) | |
tree | a684fa216d32fb44c5461de5947698abd86f59a5 /tests/bugs/interInherit/b_intf | |
parent | 808bae83b3d5f37de4b39a2380db2782919a5f8a (diff) | |
download | aspectj-11b3b0740b66f1d962b5179ece2f2d23e88f040b.tar.gz aspectj-11b3b0740b66f1d962b5179ece2f2d23e88f040b.zip |
test for
Bugzilla Bug 35725
Inter type declaration to base class not seen by derived class
Diffstat (limited to 'tests/bugs/interInherit/b_intf')
-rw-r--r-- | tests/bugs/interInherit/b_intf/B.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/bugs/interInherit/b_intf/B.java b/tests/bugs/interInherit/b_intf/B.java new file mode 100644 index 000000000..d21644dbd --- /dev/null +++ b/tests/bugs/interInherit/b_intf/B.java @@ -0,0 +1,10 @@ + +package b_intf; + +import a_intf.A; + +public interface B + extends A +{ + B g(); +} |