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

10 lines
232 B
Solidity

contract C {
uint immutable x;
constructor() {
while (true)
x = 1;
}
}
// ----
// TypeError 6672: (88-89='x'): Cannot write to immutable here: Immutable variables cannot be initialized inside a loop.