Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6115203c97547d4e03a71292ebcdf0b2b24c6203 (plain) (blame)
1
2
3
4
5
6
7
package p;

class TestSuite {
	public TestSuite(Class theClass) {
		theClass = theClass.getSuperclass();
	}
}

Back to the top