aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/upper_case_hex_literals.sol
blob: 0842c2ec17ec1f3b35407a00cb001fb720665cd0 (plain) (blame)
1
2
3
4
5
6
7
8
9
contract test {

    function f() public pure returns (uint256) {
        uint256 a = 0x1234aAbcC;
        uint256 b = 0x1234ABCDEF;
        return a + b;
    }
}
// ----