solidity/test/libsolidity/smtCheckerTests/types/function_type_members.sol

10 lines
246 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
function f(function(uint) external payable g) internal {
g.selector;
g{gas: 2, value: 3}(4);
}
}
// ----
2020-06-22 16:43:57 +00:00
// Warning 7650: (108-118): Assertion checker does not yet support this expression.