mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix error in SMTChecker: Use rich indentifier instead of external identifier to ecnode member access to functions
This commit is contained in:
@@ -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
|
||||
// ----
|
||||
Reference in New Issue
Block a user