solidity/test/libsolidity/syntaxTests/immutable/writing_after_initialization_modifier.sol
2022-04-01 23:41:18 -05:00

12 lines
292 B
Solidity

contract C {
uint immutable x = 0;
function f() readX internal { }
modifier readX() {
_; x = 1;
}
}
// ----
// TypeError 1581: (111-112='x'): Cannot write to immutable here: Immutable variables can only be initialized inline or assigned directly in the constructor.