solidity/test/libsolidity/semanticTests/viaYul/delete.sol

26 lines
584 B
Solidity
Raw Normal View History

contract C {
function internal_func() internal pure returns (int8)
{
return 1;
}
function call_internal_func() public pure returns (bool ret)
{
function() internal pure returns(int8) func = internal_func;
return func() == internal_func();
}
function call_deleted_internal_func() public pure returns (bool ret)
{
function() internal pure returns(int8) func = internal_func;
delete func;
return func() == internal_func();
}
}
// ====
// compileToEwasm: also
// ----
2020-10-13 11:28:39 +00:00
// call_deleted_internal_func() -> FAILURE, hex"4e487b71", 0x51
// call_internal_func() -> true