blob: e829784580c184bdf3a2ae0bee9cfa5f7a07cb1d [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
*/
def doSomething() {
"TestBase"
}
}