summaryrefslogtreecommitdiffstats
path: root/tests/bugs/doYouHaveVisiblePrivates/PrivateCall3.java
blob: e5da04bf07205f75923a8a702cdf346e286844c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
package def;

public class PrivateCall3 {
	public void test() {
		
	}
	
	public static void main(String []argv) {
		new PrivateCall3().test();
	}
}