jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame^] | 1 | // Copyright 2008 The Android Open Source Project |
2 | |||||
3 | /** | ||||
4 | * Public class that can't access its base. | ||||
5 | */ | ||||
6 | public class Inaccessible2 extends InaccessibleBase { | ||||
7 | public Inaccessible2() { | ||||
8 | System.out.println("--- inaccessible2"); | ||||
9 | } | ||||
10 | } |