diff options
Diffstat (limited to 'tests/bugs183/443477/Coo.java')
-rw-r--r-- | tests/bugs183/443477/Coo.java | 5 |
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(..)) { } } |