You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
226 B

  1. // input: []
  2. // output: 1
  3. package {
  4. public class StaticRetrieval {
  5. public static var v:int;
  6. public static function main():int{
  7. if (v) {
  8. return 0;
  9. } else {
  10. return 1;
  11. }
  12. }
  13. }
  14. }