summaryrefslogtreecommitdiffstats
path: root/tests/bugs/accessMethods/p1/Base.java
blob: 1d538b7d2358fc5525a5039db4f962b3efc16875 (plain)
1
2
3
4
5
6
7
8
9
package p1;

public class Base {
	protected int value=0;
	
	protected String getName() {
		return "Base";
	}
}