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

11 lines
293 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): Immutable variables can only be initialized inline or assigned directly in the constructor.
// TypeError 1574: (76-77): Immutable state variable already initialized.