mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Remove InternalCompilerError on abstract contract instantiation.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
abstract contract AbstractContract {
|
||||
constructor() public { }
|
||||
function utterance() public returns (bytes32) { return "miaow"; }
|
||||
}
|
||||
|
||||
contract Test {
|
||||
function create() public {
|
||||
AbstractContract ac = new AbstractContract();
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// TypeError: (215-235): Cannot instantiate an abstract contract.
|
||||
Reference in New Issue
Block a user