blob: 3c25cbb34960d12f89c35f32f119d36b00e8a85f [file] [log] [blame]
/**
* A base class for testing constructors
*
* @version $Revision$
*/
class TestBase {
String foo
TestBase() {
}
TestBase(String aFoo) {
this.foo = aFoo
}
/** @todo fix bug
*/
doSomething() {
"TestBase"
}
}