aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs164
diff options
context:
space:
mode:
authoraclement <aclement>2009-01-13 20:30:08 +0000
committeraclement <aclement>2009-01-13 20:30:08 +0000
commitb140866871aa357e14cc511929fb37abc845a30b (patch)
treea59f56e53553b3bb9f8755b207ae7c1236ddbe4a /tests/bugs164
parent2a58fc63d699f4be27bd81a5512b079e923e498d (diff)
downloadaspectj-b140866871aa357e14cc511929fb37abc845a30b.tar.gz
aspectj-b140866871aa357e14cc511929fb37abc845a30b.zip
260384: Literal.FALSE and clone()
Diffstat (limited to 'tests/bugs164')
-rw-r--r--tests/bugs164/pr260384/D.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/bugs164/pr260384/D.java b/tests/bugs164/pr260384/D.java
new file mode 100644
index 000000000..25381cbfd
--- /dev/null
+++ b/tests/bugs164/pr260384/D.java
@@ -0,0 +1,12 @@
+public class D {
+ public void m() throws Exception {
+ clone();
+ }
+}
+
+class E {}
+
+aspect X {
+ before(): target(E) { }
+}
+