summaryrefslogtreecommitdiffstats
path: root/tests/bugs183/443477/Coo.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs183/443477/Coo.java')
-rw-r--r--tests/bugs183/443477/Coo.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/bugs183/443477/Coo.java b/tests/bugs183/443477/Coo.java
new file mode 100644
index 000000000..7b514f3ba
--- /dev/null
+++ b/tests/bugs183/443477/Coo.java
@@ -0,0 +1,12 @@
+public class Coo {
+ Coo() {
+ }
+
+ public static void main(String[] args) {
+ }
+}
+
+aspect Azpect {
+ before(): !cflow(preinitialization(Coo.new(..))) && execution(* main(..)) { }
+}
+