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

10 lines
228 B
Solidity

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