diff options
Diffstat (limited to 'tests/bugs166')
-rw-r--r-- | tests/bugs166/pr283229/Foo.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/bugs166/pr283229/Foo.java b/tests/bugs166/pr283229/Foo.java new file mode 100644 index 000000000..6cc94aaa5 --- /dev/null +++ b/tests/bugs166/pr283229/Foo.java @@ -0,0 +1,13 @@ +public class Foo implements I { + public static void main(String []argv) { + new Foo(); + } +} + +interface I { +} + + +aspect X { + declare parents: I implements java.io.Serializable; +} |