aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/014_balance.sol
blob: e2c9a8bff3f125af8ada02de2d4e6aa242dc666b (plain) (blame)
1
2
3
4
5
6
7
8
contract test {
    function fun() public {
        uint256 x = address(0).balance;
    }
}
// ----
// Warning: (52-61): Unused local variable.
// Warning: (20-89): Function state mutability can be restricted to view