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: c5dfb78955e7f5d79cf52ff692b922c4ea82014a (plain) (blame)
1
2
3
4
5
6
7
public class CorrectField2 {
	public int bar0;
	void foo(){
		CorrectField2 cf = new CorrectField2();
		cf.bar = 5;
	}
}

Back to the top