blob: b612bfa9bc9bef10087c7aa9039942fdbdb5508a [file] [log] [blame]
The Android Open Source Project89c1feb2008-12-17 18:03:55 -08001// Copyright 2008 The Android Open Source Project
The Android Open Source Project2ad60cf2008-10-21 07:00:00 -07002
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