class Main { final static function main():Void { } final function new() {} } class Child extends Main { function new() { super(); } }