| The Android Open Source Project | 2ad60cf | 2008-10-21 07:00:00 -0700 | [diff] [blame^] | 1 | // Copyright 2008 Google Inc. All Rights Reserved. |
| 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 | } | ||||
| 11 | |||||