aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr148381/error2/Main.java
blob: 16aef2686ee45cf16e20b616de07059b21d125ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package test;

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

        @PerformanceMonitor(expected=1000)
        public void foo() {

        }
}