diff options
author | aclement <aclement> | 2011-11-17 21:20:08 +0000 |
---|---|---|
committer | aclement <aclement> | 2011-11-17 21:20:08 +0000 |
commit | 061afbf70e6f64b1e8a3c034cc5ef6d1652df76d (patch) | |
tree | 7cd9c733c4749c24c688330f83009321a8107efc /tests/bugs1610 | |
parent | 51632439ca42fc130148eaa8715d406416fdda6d (diff) | |
download | aspectj-061afbf70e6f64b1e8a3c034cc5ef6d1652df76d.tar.gz aspectj-061afbf70e6f64b1e8a3c034cc5ef6d1652df76d.zip |
363962
Diffstat (limited to 'tests/bugs1610')
-rw-r--r-- | tests/bugs1610/pr363962/Code.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/bugs1610/pr363962/Code.java b/tests/bugs1610/pr363962/Code.java new file mode 100644 index 000000000..3c2d5c49a --- /dev/null +++ b/tests/bugs1610/pr363962/Code.java @@ -0,0 +1,18 @@ +import org.aspectj.weaver.WeakClassLoaderReference; + + +public class Code { + + /** + * @param args + */ + public static void main(String[] args) { + try{ + WeakClassLoaderReference wclref = new WeakClassLoaderReference(null); + System.out.println("OK"); + }catch(Throwable npe){ + System.out.println("KO"); + } + } + +}
\ No newline at end of file |