solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/110_no_overflow_with_large_literal.sol

8 lines
138 B
Solidity
Raw Normal View History

contract c {
2020-06-23 12:14:24 +00:00
constructor() {
a = 115792089237316195423570985008687907853269984665640564039458;
}
uint256 a;
}
// ----