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: 7188f96a45d1a7ae7574b72cfe548bafcf1f82a5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                      
public class A {
	void m() {
        bug()
    } //end of last method

	/**
	 * javadoc
	 * @param s
	 */
	void foo(String s) {
		System.out.println();
	}
}

Back to the top