blob: 555078764199163575dfbef0ea6d6fefa12a9f66 [file] [log] [blame]
The Android Open Source Project2ad60cf2008-10-21 07:00:00 -07001// Copyright 2008 Google Inc. All Rights Reserved.
2
3/**
4 * Public class that can't access its base.
5 */
6public class Inaccessible2 extends InaccessibleBase {
7 public Inaccessible2() {
8 System.out.println("--- inaccessible2");
9 }
10}
11