summaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr121385/Hello.java
blob: 833ee1d3e0068d236d9e3fc4ce00cbb2d81db145 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public class Hello {

        public static void main(String[] args) {
                sayHello();
        } 

        public static void sayHello() {
                System.out.println("Hello");
                sayWorld();
        } 

        public static int sayWorld() {
                System.out.println("World");
                return 0;
        }
}