solidity/test/libsolidity/semanticTests/structs/struct_delete_struct_in_mapping.sol

21 lines
363 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;
}
}
// ====
// compileViaYul: also
// ----
// deleteIt() -> 0