aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs/abstractITDs
diff options
context:
space:
mode:
authoraclement <aclement>2004-07-28 14:43:40 +0000
committeraclement <aclement>2004-07-28 14:43:40 +0000
commit573741c8081c6b6b45921cafaae39f37eede2302 (patch)
treefae17176ce374ed0881cb10a8a161e39b3e18fbb /tests/bugs/abstractITDs
parentc143eb5ec12a8ee9cf480e8bf4a4e12acef38d40 (diff)
downloadaspectj-573741c8081c6b6b45921cafaae39f37eede2302.tar.gz
aspectj-573741c8081c6b6b45921cafaae39f37eede2302.zip
Fix for 64331
java.lang.NullPointerException in WeaverMessageHandler class
Diffstat (limited to 'tests/bugs/abstractITDs')
-rw-r--r--tests/bugs/abstractITDs/A.java2
-rw-r--r--tests/bugs/abstractITDs/B.aj3
-rw-r--r--tests/bugs/abstractITDs/B.jarbin0 -> 1396 bytes
-rw-r--r--tests/bugs/abstractITDs/C.java2
-rw-r--r--tests/bugs/abstractITDs/buildBJar.bat1
5 files changed, 8 insertions, 0 deletions
diff --git a/tests/bugs/abstractITDs/A.java b/tests/bugs/abstractITDs/A.java
new file mode 100644
index 000000000..5d9e777af
--- /dev/null
+++ b/tests/bugs/abstractITDs/A.java
@@ -0,0 +1,2 @@
+public abstract class A {
+}
diff --git a/tests/bugs/abstractITDs/B.aj b/tests/bugs/abstractITDs/B.aj
new file mode 100644
index 000000000..54af3233e
--- /dev/null
+++ b/tests/bugs/abstractITDs/B.aj
@@ -0,0 +1,3 @@
+public aspect B {
+ abstract public void A.foo();
+} \ No newline at end of file
diff --git a/tests/bugs/abstractITDs/B.jar b/tests/bugs/abstractITDs/B.jar
new file mode 100644
index 000000000..b0fcaad10
--- /dev/null
+++ b/tests/bugs/abstractITDs/B.jar
Binary files differ
diff --git a/tests/bugs/abstractITDs/C.java b/tests/bugs/abstractITDs/C.java
new file mode 100644
index 000000000..8e6613707
--- /dev/null
+++ b/tests/bugs/abstractITDs/C.java
@@ -0,0 +1,2 @@
+public class C extends A {
+} \ No newline at end of file
diff --git a/tests/bugs/abstractITDs/buildBJar.bat b/tests/bugs/abstractITDs/buildBJar.bat
new file mode 100644
index 000000000..4905f255f
--- /dev/null
+++ b/tests/bugs/abstractITDs/buildBJar.bat
@@ -0,0 +1 @@
+ajc A.java B.aj -outjar B.jar