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

	public abstract boolean m(int[] a) throws Exception;
}
class B extends A{
	@Override
	public boolean m(int[] a) throws Exception {
		return true;
	}
}
class C extends A{

	/* (non-Javadoc)
	 * @see p.A#m(int[])
	 */
	public boolean m(int[] a) throws Exception {
		return false;
	}
}

Back to the top