aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1612/xmldefs/WorldAt.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs1612/xmldefs/WorldAt.java')
-rw-r--r--tests/bugs1612/xmldefs/WorldAt.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/bugs1612/xmldefs/WorldAt.java b/tests/bugs1612/xmldefs/WorldAt.java
new file mode 100644
index 000000000..1d142de59
--- /dev/null
+++ b/tests/bugs1612/xmldefs/WorldAt.java
@@ -0,0 +1,10 @@
+import org.aspectj.lang.annotation.Aspect;
+import org.aspectj.lang.annotation.Pointcut;
+
+@Aspect
+public abstract class WorldAt {
+
+ @Pointcut("execution(* Hello.sayWorld(..))")
+ void greeting() {}
+
+}