class Test {
	static function run() : void {
		var a = [ 1, 2 ];
		delete a[0];
	}
}
