solidity/test/libsolidity/syntaxTests/immutable/inheritance_ctor_inherit_specifier_argument_reading.sol
2020-07-07 12:16:18 +02:00

17 lines
375 B
Solidity

contract B {
uint immutable x;
constructor(uint _x) {
x = _x;
}
}
contract C is B(C.y) {
uint immutable y;
constructor() {
y = 3;
}
}
// ----
// TypeError 7733: (104-107): Immutable variables cannot be read during contract creation time, which means they cannot be read in the constructor or any function or modifier called from it.