mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
232 B
Solidity
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.
|