Skip to main content
summaryrefslogtreecommitdiffstats
blob: 13b28706f2eab4802ddaf5c7882ccc234cf7016e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package p;

class A {
}
class B extends A {

	int fred;

	public int bar() {
		return 1;
	}
}

Back to the top