summaryrefslogtreecommitdiff
path: root/test/lsp/JavaB/B.java
blob: fde81073a5b0087c319eb4a1a80dd2208bd3ffe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
public class B {
	private static class Something {
		public int x = 0;
		int f() {
			return x;
		}
	}
	
	public static void main(String[] args) {
		Something s = new Something();
		s.f();
	}
}