mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
7 lines
229 B
Solidity
7 lines
229 B
Solidity
|
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.
|