aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs166/pr288049/org/othtests/MySubClass.java
blob: e99d99826e44130cfb99099f6be17e277a752b54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.othtests;

public class MySubClass extends MyClass {

	public String doOne() {
		return "one";
	}
	
	public String doTwo() {
		return "two";
	}
	
}