aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/110_no_overflow_with_large_literal.sol
blob: c3399ddff2744a265a147f978f2f0d404f2607f0 (plain) (blame)
1
2
3
4
5
6
7
8
contract c {
    function c () public {
        a = 115792089237316195423570985008687907853269984665640564039458;
    }
    uint256 a;
}
// ----
// Warning: (17-119): Defining constructors as functions with the same name as the contract is deprecated. Use "constructor(...) { ... }" instead.