1 2 3 4 5 6 7 8 9 10 11
function f() { new D(); } contract D { receive() external payable { f; } } // ---- // TypeError 7813: (16-21): Circular reference to contract bytecode either via "new" or "type(...).creationCode" / "type(...).runtimeCode".