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

8 lines
250 B
Solidity
Raw Normal View History

2018-04-23 14:04:43 +00:00
contract C {
2020-07-08 17:45:30 +00:00
uint constant a = 1 wei + 4 ether;
uint constant b = 1 seconds + 2 minutes + 3 hours + 4 days + 5 weeks;
2020-07-08 17:45:30 +00:00
uint constant c = 2 ether / 1 seconds + 3 gwei * 3 hours;
uint constant d = 2 gwei / 1 seconds + 3 minutes * 3 hours;
2018-04-23 14:04:43 +00:00
}
2018-04-23 13:54:45 +00:00
// ----