Home | History | Annotate | Download | only in src
      1 // Copyright 2006 The Android Open Source Project
      2 
      3 /**
      4  * Some stuff for access checks.
      5  */
      6 public class PublicAccess {
      7     public static void main() {
      8         String shouldFail = SemiPrivate.mPrivvy;
      9         System.out.println("Got " + shouldFail);
     10     }
     11 }
     12