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

10 lines
239 B
Solidity

contract C {
uint immutable x;
constructor() {
if (false)
x = 1;
}
}
// ----
// TypeError 4599: (86-87='x'): Cannot write to immutable here: Immutable variables cannot be initialized inside an if statement.