class F {
	static function foo() : number {
		return 0;
	}
	static function run() : void {
		F.foo()++;
	}
}
