solidity/test/libsolidity/semanticTests/structs/struct_delete_struct_in_mapping.sol
2020-07-07 12:16:18 +02:00

19 lines
332 B
Solidity

contract test {
struct testStruct {
uint256 m_value;
}
mapping(uint256 => testStruct) campaigns;
constructor() {
campaigns[0].m_value = 2;
}
function deleteIt() public returns (uint256) {
delete campaigns[0];
return campaigns[0].m_value;
}
}
// ----
// deleteIt() -> 0