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.

summaryrefslogblamecommitdiffstats
blob: e1aed4dea415fd4b541ebd2ff39af3f00b9f1ba1 (plain) (tree)




















                                       
public class X {
	int foo() {
		return(1);
	}

	Object foo2() {
		return (Object) bar();
	}

	StringBuffer bar() {
		return null;
	}

	String foo3() {
		return "";
	}

	int foo4(int i) {
		return ++i;
	}
}

Back to the top