Home | History | Annotate | Download | only in src-ex
      1 // Copyright 2008 The Android Open Source Project
      2 
      3 /**
      4  * Non-public class, inaccessible from Main.  Note the constructor is
      5  * public.
      6  */
      7 class Inaccessible1 extends SimpleBase {
      8     public Inaccessible1() {
      9         System.out.println("--- inaccessible1");
     10     }
     11 }
     12