mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
27 lines
751 B
Solidity
27 lines
751 B
Solidity
contract C {
|
|
function e() public pure {
|
|
revert("Transaction failed.");
|
|
}
|
|
function f(bool _value) public pure {
|
|
string memory message;
|
|
require(_value, message);
|
|
}
|
|
function g(bool _value) public pure {
|
|
require(_value, "Value is false.");
|
|
}
|
|
function h() public pure returns (uint) {
|
|
assert(false);
|
|
}
|
|
}
|
|
// ====
|
|
// EVMVersion: >homestead
|
|
// allowNonExistingFunctions: true
|
|
// compileToEwasm: also
|
|
// compileViaYul: also
|
|
// ----
|
|
// _() -> FAILURE
|
|
// e() -> FAILURE, hex"08c379a0", 0x20, 0x13, "Transaction failed."
|
|
// f(bool): false -> FAILURE, hex"08c379a0", 0x20, 0x00
|
|
// g(bool): false -> FAILURE, hex"08c379a0", 0x20, 0x0f, "Value is false."
|
|
// h() -> FAILURE, hex"4e487b71", 0x01
|