aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs172/pr398246/Code7.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs172/pr398246/Code7.java')
-rw-r--r--tests/bugs172/pr398246/Code7.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/bugs172/pr398246/Code7.java b/tests/bugs172/pr398246/Code7.java
new file mode 100644
index 000000000..e8d47a5a1
--- /dev/null
+++ b/tests/bugs172/pr398246/Code7.java
@@ -0,0 +1,20 @@
+import java.lang.annotation.*;
+
+public class Code7 {
+ public static boolean isTrue = true;
+ public static boolean isTrue2 = true;
+
+ public void m() {
+ }
+
+ public static void main(String []argv) {
+ new Code7().m();
+ }
+}
+
+aspect X {
+
+ before(): execution(* Code*.*(..)) && if(Code7.isTrue) && if(Code7.isTrue2) {
+ System.out.println("advice");
+ }
+}