Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3c27d6732e85eba91370a6313e436fc5fbc65343 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package p;
class A{
}
class B extends A{

	/**
	 * comment
	 */
	public void m() {}
}
class B1 extends B{
}
class C extends A{

	/**
	 * comment
	 */
	public void m() {}
}

Back to the top