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

9 lines
186 B
Solidity

contract C {
uint immutable x;
constructor() {
x = 3 + x;
}
}
// ----
// TypeError 7733: (71-72='x'): Immutable variables cannot be read before they are initialized.