solidity/test/libsolidity/syntaxTests/constructor/inconstructible_internal_constructor_inverted.sol

13 lines
223 B
Solidity

// Previously, the type information for A was not yet available at the point of
// "new A".
contract B {
A a;
constructor() public {
a = new A(address(this));
}
}
contract A {
constructor(address) public {}
}
// ----