Merge pull request #14344 from pgebal/pgebal/fix-ice-internal-type

Fix error in SMTChecker: Use rich indentifier instead of external identifier to encode member access to functions
This commit is contained in:
Leo
2023-06-27 12:31:25 +02:00
committed by GitHub
3 changed files with 20 additions and 1 deletions
@@ -0,0 +1,14 @@
library L {
function value(function()internal a, uint256 b) internal {}
}
contract C {
using L for function()internal;
function f() public {
function()internal x;
x.value(42);
}
}
// ====
// SMTEngine: all
// ----