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.

InterfaceAndClass.java 248B

12345678910111213
  1. package p;
  2. import org.aspectj.testing.Tester;
  3. public class InterfaceAndClass {
  4. public static void main(String[] args) {
  5. Tester.checkEqual(I.type, I.class, "same class");
  6. }
  7. }
  8. interface I {
  9. public final Class type = I.class;
  10. }