diff options
Diffstat (limited to 'tests/bugs171/pr73507/Case4.java')
-rw-r--r-- | tests/bugs171/pr73507/Case4.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/bugs171/pr73507/Case4.java b/tests/bugs171/pr73507/Case4.java new file mode 100644 index 000000000..8c6d28baf --- /dev/null +++ b/tests/bugs171/pr73507/Case4.java @@ -0,0 +1,18 @@ +import java.lang.reflect.*;
+
+interface I {
+}
+
+
+class C implements I {
+ public int i = 1;
+}
+
+public aspect Case4 {
+
+ public String I.i = "hello";
+
+ public static void main(String []argv) {
+ }
+
+}
|