You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Case4.java 218B

123456789101112131415161718
  1. import java.lang.reflect.*;
  2. interface I {
  3. }
  4. class C implements I {
  5. public int i = 1;
  6. }
  7. public aspect Case4 {
  8. public String I.i = "hello";
  9. public static void main(String []argv) {
  10. }
  11. }