Skip to main content
summaryrefslogtreecommitdiffstats
blob: 05eba244a1c43ef0a7b87e4088d5ecda859fb1fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public class A {
	/**
	 * javadoc
	 * @param s
	 */
	void foo(String s) {
		System.out.println();
	}

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

	void bar(String s) {
		System.out.println();
	}
}

Back to the top