aboutsummaryrefslogtreecommitdiffstats
path: root/tests/model/pr148027/C.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/model/pr148027/C.aj')
-rw-r--r--tests/model/pr148027/C.aj10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/model/pr148027/C.aj b/tests/model/pr148027/C.aj
new file mode 100644
index 000000000..63b4e6cb6
--- /dev/null
+++ b/tests/model/pr148027/C.aj
@@ -0,0 +1,10 @@
+package pkg;
+
+public class C {
+
+ pointcut pointcutInClass() : execution(void cMethod());
+
+ public void cMethod() {
+
+ }
+}