aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs183/443477
diff options
context:
space:
mode:
authorAndy Clement <aclement@gopivotal.com>2014-10-07 15:07:00 -0700
committerAndy Clement <aclement@gopivotal.com>2014-10-07 15:07:00 -0700
commit34cff6034e44295417149fdb85dd2cebac8c983f (patch)
tree0cde73e650ca32d0d6950b5718dd03ce195ca09e /tests/bugs183/443477
parentc8e951296c5f95e82d4c7c3f8eb9b0a647014e20 (diff)
downloadaspectj-34cff6034e44295417149fdb85dd2cebac8c983f.tar.gz
aspectj-34cff6034e44295417149fdb85dd2cebac8c983f.zip
Fix 443477: remove pre-init from cflow to avoid verify error on jdk 1.7 later updates
Diffstat (limited to 'tests/bugs183/443477')
-rw-r--r--tests/bugs183/443477/Coo.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/bugs183/443477/Coo.java b/tests/bugs183/443477/Coo.java
index 7b514f3ba..3362f5024 100644
--- a/tests/bugs183/443477/Coo.java
+++ b/tests/bugs183/443477/Coo.java
@@ -1,12 +1,15 @@
public class Coo {
Coo() {
}
+
+ int i = 4;
+
public static void main(String[] args) {
}
}
aspect Azpect {
- before(): !cflow(preinitialization(Coo.new(..))) && execution(* main(..)) { }
+ before(): !cflow(preinitialization(Coo.new(..))) && execution(* main(..)) { }
}