solidity/test/libsolidity/syntaxTests/functionTypes/delete_external_function_type_invalid.sol

8 lines
138 B
Solidity

contract C {
function f() public {
delete this.f;
}
}
// ----
// TypeError 4247: (54-60): Expression has to be an lvalue.