aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs/protectedvf/main/Driver.java
blob: 5ca85cd3246aa78c86701dcb8d5dcf5f9da4c89d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package main;

public class Driver{

	public static void main(String[] args) {
		Driver d = new Driver();
		d.doStuff();
		d.doOtherStuff();
	}

	private void doOtherStuff() {
		//System.out.println("doing other stuff");
	}

	private void doStuff() {
		//System.out.println("doing stuff");
	}
}