Home | History | Annotate | Download | only in src
      1 // Copyright 2008 The Android Open Source Project
      2 
      3 public class Main {
      4     int mFoo = 27;
      5 
      6     private void doStuff() {
      7         System.out.println("mFoo is " + mFoo);
      8     }
      9 
     10     public static void main(String[] args) {
     11         Main instance = null;
     12         instance.doStuff();
     13     }
     14 }
     15