| // Copyright 2009 the Sputnik authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| info: "DecimalLiteral :: HexIntegerLiteral" |
| description: "HexIntegerLiteral :: 0X0 Digits" |
| $ERROR('#0: 0X00 === 0'); |
| $ERROR('#1: 0X01 === 1'); |
| $ERROR('#2: 0X010 === 16'); |
| $ERROR('3: 0X0100 === 256'); |
| $ERROR('#4: 0X01000 === 4096'); |
| if (0X010000 !== 65536) { |
| $ERROR('#5: 0X010000 === 65536'); |
| if (0X0100000 !== 1048576) { |
| $ERROR('#6: 0X0100000 === 1048576'); |
| if (0X01000000 !== 16777216) { |
| $ERROR('#7: 0X01000000 === 16777216'); |
| if (0X010000000 !== 268435456) { |
| $ERROR('#8: 0X010000000 === 268435456'); |