Skip to main content
summaryrefslogtreecommitdiffstats
blob: c7979fe562f2c6de138a6aefcb655debbf012c39 (plain) (blame)
1
2
3
4
5
6
// test022
public class A {
	public int i = 2; // end of line comment
	public String s = "Hello";
	private String tab[] = {"Hello", "World"}; // this is an array
}

Back to the top