solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/213_no_delete_on_storage_pointers.sol

10 lines
221 B
Solidity

contract C {
uint[] data;
function f() public {
uint[] storage x = data;
delete x;
}
}
// ----
// TypeError: (97-105): Unary operator delete cannot be applied to type uint256[] storage pointer