solidity/test/libsolidity/syntaxTests/immutable/state_var_external_access_write.sol
2023-07-14 15:29:32 +02:00

12 lines
232 B
Solidity

contract C {
uint immutable public x = 42;
function g() external view returns (uint) {}
function f() public view {
this.x = this.g;
}
}
// ----
// TypeError 4247: (137-143): Expression has to be an lvalue.