solidity/test/libsolidity/smtCheckerTests/functions/payable_1.sol
2021-09-15 14:42:39 +02:00

16 lines
176 B
Solidity

contract C {
function g() external {
f();
}
function h() external payable {
f();
}
function f() internal {
require(msg.value == 0);
}
}
// ====
// SMTEngine: all