1 2 3 4 5 6 7 8 9 10
library L1 { function foo() internal { new A(); } } library L2 { function foo() public { L1.foo(); } } contract A { function f() public { L2.foo(); } } // ----