Detect circular references for library and free functions

This commit is contained in:
Mathias Baumann
2021-03-30 23:06:30 +02:00
committed by chriseth
parent 15fe07bebe
commit e590a99f39
37 changed files with 1168 additions and 288 deletions
@@ -0,0 +1,3 @@
contract C { function foo() internal { new D(); } }
contract D { function foo() internal { new C(); } }
// ----