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

8 lines
133 B
Solidity
Raw Normal View History

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