sync the repo
[hiphop-php.git] / hphp / hack / test / nast / numeric_literals_underscores.php
blobf50a3f28f87c9483f02fd546f0e54e3b306b4ab8
1 <?hh
2 // Copyright 2004-present Facebook. All Rights Reserved.
4 class BigNumbersRUs {
5 const float fp = 1_2_3.4_5_6;
6 const float fpexp = 1_2_3e-4_5_6;
7 const float fpdot = .1_2_3e-4_5_6;
8 const float fpleading = 0.1_2_3_4e+2_5;
9 const float fpleadingexp = 0e-1_5;
10 const float fpoct = 03_41.51_36;
12 const int dec = 1_234_567_890;
13 const int hex = 0xff_cc_123_4;
14 const int bin = 0b11_00_11_00;
15 const int oct = 0666_555_444;
16 const int neg_dec = -1_234_567_890;
17 const int neg_hex = -0xff_cc_123_4;
18 const int neg_bin = -0b11_00_11_00;
19 const int neg_oct = -0666_555_444;