1
0
Fork 0

[cleanup] Mark unused files

This commit is contained in:
pukkandan 2021-06-05 21:25:06 +05:30
commit 9d83ad93d0
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
30 changed files with 5 additions and 1 deletions

View file

@ -0,0 +1,18 @@
// input: []
// output: 4
package {
public class ConstArrayAccess {
private static const x:int = 2;
private static const ar:Array = ["42", "3411"];
public static function main():int{
var c:ConstArrayAccess = new ConstArrayAccess();
return c.f();
}
public function f(): int {
return ar[1].length;
}
}
}