jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 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 | } |