aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/213_no_delete_on_storage_pointers.sol
blob: d17b62e4c7f6a350a59cbcca6c1373806ae7b998 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
contract C {
    uint[] data;
    function f() public {
        var x = data;
        delete x;
    }
}
// ----
// Warning: (64-69): Use of the "var" keyword is deprecated.
// TypeError: (86-94): Unary operator delete cannot be applied to type uint256[] storage pointer