aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs163
diff options
context:
space:
mode:
authoraclement <aclement>2008-11-28 20:44:35 +0000
committeraclement <aclement>2008-11-28 20:44:35 +0000
commitee2a860fcdf78383350e33c2a1d16be814e30f83 (patch)
tree9aa1662affdf8131a98c93993fd5deecfa747d68 /tests/bugs163
parent7cc89195decaf1f2b862f24872ee387973e76cac (diff)
downloadaspectj-ee2a860fcdf78383350e33c2a1d16be814e30f83.tar.gz
aspectj-ee2a860fcdf78383350e33c2a1d16be814e30f83.zip
256937: test and fix
Diffstat (limited to 'tests/bugs163')
-rw-r--r--tests/bugs163/pr256937/Ship.java5
-rw-r--r--tests/bugs163/pr256937/ShipAccessor.java14
2 files changed, 19 insertions, 0 deletions
diff --git a/tests/bugs163/pr256937/Ship.java b/tests/bugs163/pr256937/Ship.java
new file mode 100644
index 000000000..866271b22
--- /dev/null
+++ b/tests/bugs163/pr256937/Ship.java
@@ -0,0 +1,5 @@
+public class Ship {
+ public void moveTo(int newX, int newY) {
+ this.h();
+ }
+}
diff --git a/tests/bugs163/pr256937/ShipAccessor.java b/tests/bugs163/pr256937/ShipAccessor.java
new file mode 100644
index 000000000..c1f0e5280
--- /dev/null
+++ b/tests/bugs163/pr256937/ShipAccessor.java
@@ -0,0 +1,14 @@
+public privileged aspect ShipAccessor {
+
+
+
+
+
+
+
+
+ public java.util.List<String> Ship.h() {
+ return null;
+ }
+}
+