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

8 lines
138 B
Solidity
Raw Normal View History

2018-03-16 10:20:06 +00:00
contract C {
function f() public {
delete this.f;
}
}
2018-03-16 10:33:05 +00:00
// ----
// TypeError 4247: (54-60): Expression has to be an lvalue.