solidity/test/libsolidity/semanticTests/structs/struct_delete_struct_in_mapping.sol
2023-05-11 10:56:55 -05:00

18 lines
331 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