aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1610
diff options
context:
space:
mode:
authoraclement <aclement>2011-11-17 21:20:08 +0000
committeraclement <aclement>2011-11-17 21:20:08 +0000
commit061afbf70e6f64b1e8a3c034cc5ef6d1652df76d (patch)
tree7cd9c733c4749c24c688330f83009321a8107efc /tests/bugs1610
parent51632439ca42fc130148eaa8715d406416fdda6d (diff)
downloadaspectj-061afbf70e6f64b1e8a3c034cc5ef6d1652df76d.tar.gz
aspectj-061afbf70e6f64b1e8a3c034cc5ef6d1652df76d.zip
363962
Diffstat (limited to 'tests/bugs1610')
-rw-r--r--tests/bugs1610/pr363962/Code.java18
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