aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/globalFunctions/suicide_var.sol
blob: 3549a5633ff30eb5b9455dac2c5b135b9253ac27 (plain) (blame)
1
2
3
4
5
6
7
8
9
contract C
{
    function f() public pure returns (bool) {
        bool suicide = true;
        return suicide;
    }
}
// ----
// Warning: (58-70): This declaration shadows a builtin symbol.