aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/denominations/combining_hex_and_denomination_050.sol
blob: 988659995dae00c7e65022e75aea27f1cc077ee6 (plain) (blame)
1
2
3
4
5
6
pragma experimental "v0.5.0";
contract C {
    uint constant x = 0x01 wei;
}
// ----
// TypeError: (62-70): Hexadecimal numbers cannot be used with unit denominations. You can use an expression of the form "0x1234 * 1 day" instead.