Fix error in SMTChecker: Use rich indentifier instead of external identifier to ecnode member access to functions

This commit is contained in:
Pawel Gebal
2023-06-23 15:24:55 +02:00
parent b26090c288
commit 826fd90dcf
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
// ----