aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1611/pr333274/ma2/Main.java
blob: 52e93f21244cd83cd0262534720a73313e6195d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package ma2;


public class Main {

        @Annotation1
        public int retryTranslateAndTimeLimited() {
            System.out.println("Method call");
            return 1;
        }

    public static void main(String[] args) {
        new Main().retryTranslateAndTimeLimited();
    }

}