aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/501_gasleft_shadowing_2.sol
blob: 2679c89d8b163e78d64d805748c9e26986ccbc70 (plain) (blame)
1
2
3
4
5
6
contract C {
    uint gasleft;
    function f() public { gasleft = 42; }
}
// ----
// Warning: (17-29): This declaration shadows a builtin symbol.