solidity/test/libsolidity/smtCheckerTests/functions/payable_1.sol

16 lines
176 B
Solidity
Raw Normal View History

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