1 2 3 4 5 6 7 8
abstract contract C { constructor() {} } contract D { function f() public { C c = new C(); c; } } // ---- // TypeError 4614: (84-89): Cannot instantiate an abstract contract.