interface I {
}
class Test {
	static function run() : void {
		new I();
	}
}
