You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Code.java 315B

123456789101112131415161718
  1. import org.aspectj.weaver.WeakClassLoaderReference;
  2. public class Code {
  3. /**
  4. * @param args
  5. */
  6. public static void main(String[] args) {
  7. try{
  8. WeakClassLoaderReference wclref = new WeakClassLoaderReference(null);
  9. System.out.println("OK");
  10. }catch(Throwable npe){
  11. System.out.println("KO");
  12. }
  13. }
  14. }