blob: 92f8ca8ec59a81de55b56ff9ada4c394040173c5 [file] [log] [blame]
package nestHostExample;
public class OutsideInliningWithAccess extends NestHostInlining.EmptyWithPrivAccess {
public static void main(String[] args) {
System.out.println("OutsideInliningNoAccess");
System.out.println(new OutsideInliningWithAccess().access(new NestHostInlining()));
}
}