solidity/test/libsolidity/syntaxTests/immutable/writing_after_initialization.sol

10 lines
251 B
Solidity
Raw Normal View History

2020-03-10 17:15:50 +00:00
contract C {
uint immutable x = 0;
function f() internal {
x = 1;
}
}
// ----
// TypeError 1581: (76-77): Cannot write to immutable here: Immutable variables can only be initialized inline or assigned directly in the constructor.