solidity/test/libsolidity/smtCheckerTests/types/function_type_external_address.sol
2019-11-19 10:58:59 +01:00

11 lines
308 B
Solidity

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