aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/Hello.java
blob: 473ee5251835185ad4afead47e1d80d0a3612018 (plain)
1
2
3
4
5
6
public class Hello {
    public static void main(String[] args) {
	System.out.println("hello world");
        if (args.length > 1) throw new Error("e");
    }
}