1 2 3 4 5 6 7 8 9 10 11 12 13 14
library L { error gsf(); } contract test { error tgeo(); function f(bool a) public { if (a) revert L.gsf(); else revert tgeo(); } } // ---- // TypeError 4883: (57-61): Error signature hash collision for tgeo()