summaryrefslogtreecommitdiff
path: root/test/lsp/JavaA/Main.java
blob: 5682de5855ae49f3fcd9411eee66afb9e61819ef (plain)
1
2
3
4
5
6
7
8
9
public class Main {
	public static void main(String[] args) {
		int x = 0;
		x++;
		for (int i = 0; i < args.length; ++i) {
			Integer.parseInt("33");
		}
	}
}