Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5499cf51cb3ba2b1bf6be416d1b2d0c091a079e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package targets.model.pc;

@AnnoY("on H")
public class H extends G {
	int fieldInt; // hides definition in G
	
	public String methodIAString(int int1)
	{
		return null;
	}
}

Back to the top