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

10 lines
241 B
Solidity

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