Main.hx 260 B

123456789101112
  1. // This is in fact DCE related, so it should be compiled seperately...
  2. class Main {
  3. static function main() {
  4. var i = 2;
  5. i >>>= 1;
  6. if (i != 1)
  7. throw "i != 1";
  8. if (StringTools.hex(1, 6) != "000001")
  9. throw 'StringTools.hex(1, 6) != "000001"';
  10. }
  11. }