mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
11 lines
212 B
Solidity
11 lines
212 B
Solidity
|
contract C {
|
||
|
function e() public {
|
||
|
revert("Transaction failed.");
|
||
|
}
|
||
|
}
|
||
|
// ====
|
||
|
// EVMVersion: >homestead
|
||
|
// ----
|
||
|
// _() -> FAILURE
|
||
|
// e() -> FAILURE, hex"08c379a0", 0x20, 19, "Transaction failed."
|