aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ltw/Child.java
blob: 4719933f06e7ed1f38b41d397e13a2bdda495ef6 (plain)
1
2
3
4
5
6
7
8
9
public class Child extends Parent {
	public Child () {
		System.out.println("Child");
	}
	
	public static void main (String[] args) {
		new Child();
	}
}