diff options
author | acolyer <acolyer> | 2004-03-15 22:38:03 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2004-03-15 22:38:03 +0000 |
commit | 5c67166488df998bc208567c2fd27f21b52592c5 (patch) | |
tree | 9d697207ea6b995be72a39e9f54abcd003a966cb /tests/bugs | |
parent | 1f7d28f480f7f8c5e0316688a4f95abb62e7b747 (diff) | |
download | aspectj-5c67166488df998bc208567c2fd27f21b52592c5.tar.gz aspectj-5c67166488df998bc208567c2fd27f21b52592c5.zip |
fix for Bugzilla Bug 51322
Introduce Unknown Type to class causes Null pointer exception
Diffstat (limited to 'tests/bugs')
-rw-r--r-- | tests/bugs/Pr51322.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/bugs/Pr51322.java b/tests/bugs/Pr51322.java new file mode 100644 index 000000000..9a7268e96 --- /dev/null +++ b/tests/bugs/Pr51322.java @@ -0,0 +1,6 @@ +class A {} +public abstract aspect Pr51322 +{ + public void A.aMethod(Object x) {} + public void A.someMethod(WCharType a) { } +}
\ No newline at end of file |