blob: 96282598f9cbd229903f5d45defcbe02721df23d [file] [log] [blame]
jeffhao5d1ac922011-09-29 17:41:15 -07001// Copyright 2006 The Android Open Source Project
2
3import otherpackage.PublicAccess;
4
5public class Main {
6 public static void main(String[] args) {
7 System.out.println("access test");
8
9 PublicAccess pa = new PublicAccess();
10 pa.main();
11 }
12}