From a674f634521fcb4575305e41527b2a1b4927d033 Mon Sep 17 00:00:00 2001 From: aclement Date: Mon, 9 Nov 2009 19:32:27 +0000 Subject: [PATCH] timers --- tests/features167/timers/one/Asp.java | 3 +++ tests/features167/timers/one/Code.java | 3 +++ tests/features167/timers/one/Code2.java | 3 +++ tests/features167/timers/one/aop.xml | 6 ++++++ 4 files changed, 15 insertions(+) create mode 100644 tests/features167/timers/one/Asp.java create mode 100644 tests/features167/timers/one/Code.java create mode 100644 tests/features167/timers/one/Code2.java create mode 100644 tests/features167/timers/one/aop.xml diff --git a/tests/features167/timers/one/Asp.java b/tests/features167/timers/one/Asp.java new file mode 100644 index 000000000..fe41a1590 --- /dev/null +++ b/tests/features167/timers/one/Asp.java @@ -0,0 +1,3 @@ +public aspect Asp { + before(): execution(* *(..)) {} +} diff --git a/tests/features167/timers/one/Code.java b/tests/features167/timers/one/Code.java new file mode 100644 index 000000000..fa0490002 --- /dev/null +++ b/tests/features167/timers/one/Code.java @@ -0,0 +1,3 @@ +public class Code { + public void a() {} +} diff --git a/tests/features167/timers/one/Code2.java b/tests/features167/timers/one/Code2.java new file mode 100644 index 000000000..cae1e625b --- /dev/null +++ b/tests/features167/timers/one/Code2.java @@ -0,0 +1,3 @@ +public class Code2 extends Code { + public static void main(String[] argv) {} +} diff --git a/tests/features167/timers/one/aop.xml b/tests/features167/timers/one/aop.xml new file mode 100644 index 000000000..f64e67196 --- /dev/null +++ b/tests/features167/timers/one/aop.xml @@ -0,0 +1,6 @@ + + + + + + -- 2.39.5