summaryrefslogtreecommitdiffstats
path: root/tests/java5/ataspectj/coverage/Test037.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/java5/ataspectj/coverage/Test037.java')
-rw-r--r--tests/java5/ataspectj/coverage/Test037.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/java5/ataspectj/coverage/Test037.java b/tests/java5/ataspectj/coverage/Test037.java
new file mode 100644
index 000000000..cfce50288
--- /dev/null
+++ b/tests/java5/ataspectj/coverage/Test037.java
@@ -0,0 +1,9 @@
+//"@Before advice with empty string"
+
+import org.aspectj.lang.annotation.*;
+
+aspect A{
+ @Before("") // this should compile I think, it's just Before advice for no pointcut
+ public void someCall(){
+ }
+}