aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/110_no_overflow_with_large_literal.sol
blob: 9b36fa70b498e9320120c2587dc070e21a0006fd (plain) (blame)
1
2
3
4
5
6
7
contract c {
    constructor() public {
        a = 115792089237316195423570985008687907853269984665640564039458;
    }
    uint256 a;
}
// ----