solidity/test/libsolidity/syntaxTests/parsing/literal_constants_with_ether_subdenominations_in_expressions.sol
2020-07-13 18:07:10 +02:00

8 lines
103 B
Solidity

contract c {
constructor()
{
a = 1 wei * 100 wei + 7 gwei - 3;
}
uint256 a;
}