aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraclement <aclement>2005-12-21 09:04:53 +0000
committeraclement <aclement>2005-12-21 09:04:53 +0000
commitd21b27a4ec70fe7dbb4b38a42ff6015ec4cde16f (patch)
tree890584ff80e312b9c902ab7131e5dbde673be2ff
parent6c67bc69e2052ea82b1ea0e7b415ba710d1e3c19 (diff)
downloadaspectj-d21b27a4ec70fe7dbb4b38a42ff6015ec4cde16f.tar.gz
aspectj-d21b27a4ec70fe7dbb4b38a42ff6015ec4cde16f.zip
testcode for 119453
-rw-r--r--ajdoc/testdata/pr119453/src/pack/A.aj19
-rw-r--r--ajdoc/testdata/pr119453/src/pack/C.java18
2 files changed, 37 insertions, 0 deletions
diff --git a/ajdoc/testdata/pr119453/src/pack/A.aj b/ajdoc/testdata/pr119453/src/pack/A.aj
new file mode 100644
index 000000000..2a4a61a9d
--- /dev/null
+++ b/ajdoc/testdata/pr119453/src/pack/A.aj
@@ -0,0 +1,19 @@
+package pack;
+
+public aspect A {
+
+ private int C.y = 3;
+
+ /**
+ * blah
+ */
+ public String C.m(){return "";};
+
+ public C.new(String s){ this();};
+
+ pointcut p() : execution(* *.*(..));
+
+ before() : p() {
+ }
+
+}
diff --git a/ajdoc/testdata/pr119453/src/pack/C.java b/ajdoc/testdata/pr119453/src/pack/C.java
new file mode 100644
index 000000000..7b9b839c8
--- /dev/null
+++ b/ajdoc/testdata/pr119453/src/pack/C.java
@@ -0,0 +1,18 @@
+package pack;
+
+public class C {
+
+ public int x = 2;
+
+ void method() {
+ }
+
+ public String method1() {
+ return "";
+ }
+
+ private String method2(){
+ return "";
+ }
+
+}