aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr132080/HelloWorld.java
blob: 8f62298fae4d9bc4a22cd9bcd653cd3291ad0ade (plain)
1
2
3
4
5
6
7
8
9
10
11
public class HelloWorld {

	public void println () {
		System.out.println("Hello World!");
	}
	
	public static void main (String[] args) throws Exception {
		new HelloWorld().println();
	}
	
}