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

11 lines
308 B
Solidity
Raw Normal View History

2019-11-19 09:58:59 +00:00
pragma experimental SMTChecker;
contract C {
function f(address a, function(uint) external g) internal pure {
address b = g.address;
assert(a == b);
}
}
// ----
// Warning: (128-137): Assertion checker does not yet support this expression.
// Warning: (141-155): Assertion violation happens here