aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs/cflowAndJar/Test.java
blob: 079ac6b22152b581e1ff853ab25c2747f1293f66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public class Test{
  public static void main(String[] arguments){
	Test test = new Test();
	test.sayHello();
	test.doSayHello();
  }

  public void sayHello(){
	doSayHello();
  }

  public void doSayHello(){
	System.out.println("hello.");
  }
}