aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr158126/A.java
blob: d92c77fcb8a3179501fa5eb5f4165df53846f268 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public class A {

        @MyAnnotation
        public A() {
                new B();
        }

        @MyAnnotation
        public A(int i) {
                new B(i);
        }

        public static void main(String[] args) {
                new A();
                new A(1);
        }
}