summaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr137235/directory.jar/Rename.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs152/pr137235/directory.jar/Rename.aj')
-rw-r--r--tests/bugs152/pr137235/directory.jar/Rename.aj5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/bugs152/pr137235/directory.jar/Rename.aj b/tests/bugs152/pr137235/directory.jar/Rename.aj
new file mode 100644
index 000000000..fb89dfca5
--- /dev/null
+++ b/tests/bugs152/pr137235/directory.jar/Rename.aj
@@ -0,0 +1,5 @@
+public aspect Rename {
+ String around() : call(* getName()) {
+ return "AspectJ not just "+proceed();
+ }
+}