solidity/test/libsolidity/smtCheckerTests/types/function_type_members.sol
2020-06-22 18:56:32 +02:00

10 lines
246 B
Solidity

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