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

6 lines
104 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
function f(function(uint) external g) public {
}
}