summaryrefslogtreecommitdiffstats
path: root/tests/bugs150
diff options
context:
space:
mode:
authoraclement <aclement>2005-01-19 09:36:46 +0000
committeraclement <aclement>2005-01-19 09:36:46 +0000
commit71966e3348a05cb99b88885b8e6b751cc61a638e (patch)
treec55bfb4bd3c329fbd466f4d5232131a4b0cf1871 /tests/bugs150
parent0c8315087053985cae6defeaa2e3f9377968de88 (diff)
downloadaspectj-71966e3348a05cb99b88885b8e6b751cc61a638e.tar.gz
aspectj-71966e3348a05cb99b88885b8e6b751cc61a638e.zip
Fix for Bug 82570: Weaved code does not include debug lines
Diffstat (limited to 'tests/bugs150')
-rw-r--r--tests/bugs150/PR82570_1.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/bugs150/PR82570_1.java b/tests/bugs150/PR82570_1.java
new file mode 100644
index 000000000..074ad22d1
--- /dev/null
+++ b/tests/bugs150/PR82570_1.java
@@ -0,0 +1,32 @@
+
+public class PR82570_1 {
+ public static void main(String[] args) {
+ new PR82570_1().m();
+ }
+
+ public void m() {
+
+ }
+}
+
+aspect X {
+
+
+ public PR82570_1.new(String p) {}
+
+ public int PR82570_1.itdField;
+
+ public void PR82570_1.itdMethod(String s) {
+
+ }
+
+ before(): call(* m(..)) {
+ System.err.println("m");
+ }
+
+ void around(): call(* m(..)) {
+
+ }
+
+}
+