solidity/test/libsolidity/syntaxTests/types/function_call_fail2.sol

8 lines
156 B
Solidity

contract C {
function f(uint y) public pure returns (uint) {
(f(y)) = 2;
}
}
// ----
// TypeError: (74-78): Expression has to be an lvalue.