blob: 96282598f9cbd229903f5d45defcbe02721df23d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright 2006 The Android Open Source Project
import otherpackage.PublicAccess;
public class Main {
public static void main(String[] args) {
System.out.println("access test");
PublicAccess pa = new PublicAccess();
pa.main();
}
}
|