mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
289 B
Solidity
14 lines
289 B
Solidity
// Previously, the type information for A was not yet available at the point of
|
|
// "new A".
|
|
contract B {
|
|
A a;
|
|
constructor() {
|
|
a = new A(address(this));
|
|
}
|
|
}
|
|
abstract contract A {
|
|
constructor(address) {}
|
|
}
|
|
// ----
|
|
// TypeError 4614: (134-139): Cannot instantiate an abstract contract.
|