Skip to main content
summaryrefslogtreecommitdiffstats
blob: 88458521b23b37ed92a228b91f87147bbcbf802b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package p;
class A{

	public static final int A = 0;

	public static void m() {
	}
}
class B extends A{
}

Back to the top