Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 09595a198cdd3ad2fc6cfc3ab51dbb8458f7f2ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class CompletionMessageSendIsParent1 {
	void bar(int i, long j){}
	void bar(int i, Object j){}
	
	long zzlong;
	int zzint;
	double zzdouble;
	boolean zzboolean;
	Object zzObject;
	
	void foo() {
		bar(1, zz
	}
}

Back to the top