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

class A {
	
	private int bar() {
		return foo();
	}

	public int foo() {
		return 2;
	}
}
class B extends A {
}

Back to the top