aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1612/xmldefs/Hello2.java
blob: 92b4dd8348eeebc70264527741a0207152dccf37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public class Hello2 {

        public static void main(String[] args) {
                say1("hello");
        } 

        public static void say1(String h) {
                System.out.println(h);
                say2("world");
        } 

        public static int say2(String w) {
                System.out.println(w);
                return 0;
        }
}