solidity/test/libsolidity/syntaxTests/immutable/inheritance_virtual_functions.sol
2023-07-14 15:29:32 +02:00

20 lines
376 B
Solidity

contract B {
uint immutable x;
constructor() {
x = xInit();
}
function xInit() internal view virtual returns(uint) {
return 3;
}
}
contract C is B {
function xInit() internal view override returns(uint) {
return x;
}
}
// ----
// TypeError 7733: (263-264): Immutable variables cannot be read before they are initialized.