diff options
Diffstat (limited to 'tests/bugs154/pr148381/simple/Main.java')
-rw-r--r-- | tests/bugs154/pr148381/simple/Main.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/bugs154/pr148381/simple/Main.java b/tests/bugs154/pr148381/simple/Main.java new file mode 100644 index 000000000..16aef2686 --- /dev/null +++ b/tests/bugs154/pr148381/simple/Main.java @@ -0,0 +1,12 @@ +package test; + +public class Main { + public static void main(String[] args) { + new Main().foo(); + } + + @PerformanceMonitor(expected=1000) + public void foo() { + + } +} |