solidity/test/libsolidity/syntaxTests/immutable/conditionally_initialized.sol
2020-08-28 15:24:40 +02:00

10 lines
235 B
Solidity

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