solidity/test/libsolidity/semanticTests/payable/no_nonpayable_circumvention_by_modifier.sol

18 lines
403 B
Solidity
Raw Normal View History

contract C {
modifier tryCircumvent {
if (false) _; // avoid the function, we should still not accept ether
}
function f() tryCircumvent public returns (uint) {
return msgvalue();
}
function msgvalue() internal returns (uint) {
return msg.value;
}
}
2020-11-30 17:59:49 +00:00
// ====
// compileViaYul: also
2021-04-23 15:59:01 +00:00
// compileToEwasm: also
// ----
// f(), 27 wei -> FAILURE
// balance -> 0