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.

A.java 294B

1234567891011121314151617
  1. public class A {
  2. @MyAnnotation
  3. public A() {
  4. new B();
  5. }
  6. @MyAnnotation
  7. public A(int i) {
  8. new B(i);
  9. }
  10. public static void main(String[] args) {
  11. new A();
  12. new A(1);
  13. }
  14. }