Check for void/noreturn in conditionals
[hiphop-php.git] / hphp / hack / test / typecheck / parse_int_with_underscore.php
blob6b910a7556df275b46225d59671476663ec2c3fd
1 <?hh // strict
2 // Copyright 2004-present Facebook. All Rights Reserved.
4 class BigNumbersRUs {
5 const int dec = 1_234_567_890;
6 const int hex = 0xff_cc_123_4;
7 const int bin = 0b11_00_11_00;
8 const int oct = 0666_555_444;