test/runtime/6626217/from_loader2.java

Thu, 26 Sep 2013 10:25:02 -0400

author
hseigel
date
Thu, 26 Sep 2013 10:25:02 -0400
changeset 5784
190899198332
parent 0
f90c822e73f8
permissions
-rw-r--r--

7195622: CheckUnhandledOops has limited usefulness now
Summary: Enable CHECK_UNHANDLED_OOPS in fastdebug builds across all supported platforms.
Reviewed-by: coleenp, hseigel, dholmes, stefank, twisti, ihse, rdurbin
Contributed-by: lois.foltan@oracle.com

aoqi@0 1 // A simple class to extend an abstract class and get loaded with different
aoqi@0 2 // loaders. This class is loaded via LOADER2.
aoqi@0 3 public class from_loader2 implements IFace {
aoqi@0 4 public many_loader[] gen() {
aoqi@0 5 many_loader[] x = new many_loader[1];
aoqi@0 6 x[0] = new many_loader();
aoqi@0 7 return x;
aoqi@0 8 }
aoqi@0 9 }

mercurial