Change placeholder style.

This commit is contained in:
chriseth 2016-09-05 21:32:27 +02:00
parent 1eb7ddbb09
commit ff11aa1927

View File

@ -7154,7 +7154,7 @@ BOOST_AUTO_TEST_CASE(no_nonpayable_circumvention_by_modifier)
char const* sourceCode = R"(
contract C {
modifier tryCircumvent {
if (false) _ // avoid the function, we should still not accept ether
if (false) _; // avoid the function, we should still not accept ether
}
function f() tryCircumvent returns (uint) {
return msg.value;