view test/runtime/6626217/from_loader2.java @ 23572:d6c92b9e192e jdk8u102-b00 jdk8u82-b00

Added tag jdk8u76-b04 for changeset 16f7b676725a
author asaha
date Mon, 25 Jan 2016 13:21:15 -0800
parents 495caa35b1b5
children
line wrap: on
line source

// A simple class to extend an abstract class and get loaded with different
// loaders.  This class is loaded via LOADER2.
public class from_loader2 implements IFace {
  public many_loader[] gen() {
    many_loader[] x = new many_loader[1];
    x[0] = new many_loader();
    return x;
  }
}