class Test {
	static const STATIC_VAR = "static";

	static function run() : void {
		Test.STATIC_VAR = "new value";
	}
}

