solidity/test/libsolidity/syntaxTests/denominations/combining_hex_and_denomination.sol

6 lines
199 B
Solidity
Raw Normal View History

2018-04-23 13:56:40 +00:00
contract C {
uint constant x = 0x01 wei;
}
// ----
// TypeError: (32-40): Hexadecimal numbers cannot be used with unit denominations. You can use an expression of the form "0x1234 * 1 day" instead.