summaryrefslogtreecommitdiffstats
path: root/tests/bugs163/pr256458/Code2.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs163/pr256458/Code2.java')
-rw-r--r--tests/bugs163/pr256458/Code2.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/bugs163/pr256458/Code2.java b/tests/bugs163/pr256458/Code2.java
new file mode 100644
index 000000000..eed38b6a3
--- /dev/null
+++ b/tests/bugs163/pr256458/Code2.java
@@ -0,0 +1,10 @@
+import org.aspectj.lang.annotation.*;
+
+@Aspect
+public class Code2 {
+
+ @Around("execution(* Code.*(..)) && if(java.lang.System.currentTimeMillis() > 1)")
+ public void foo() {
+ }
+
+}