Skip to main content
summaryrefslogtreecommitdiffstats
blob: ca72f4fce0404b8cceeaefcd58b40764d4bda313 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
public class CompletionVariableInitializerInMethod1 {
	long zzlong;
	int zzint;
	double zzdouble;
	boolean zzboolean;
	Object zzObject;
	
	void foo {
		long o = zz
	}
}

Back to the top