mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
16 lines
240 B
Solidity
16 lines
240 B
Solidity
|
contract A {
|
||
|
function g() public { revert("fail"); }
|
||
|
}
|
||
|
|
||
|
contract C {
|
||
|
A a = new A();
|
||
|
function f() public {
|
||
|
a.g();
|
||
|
}
|
||
|
}
|
||
|
// ====
|
||
|
// EVMVersion: >=byzantium
|
||
|
// revertStrings: debug
|
||
|
// ----
|
||
|
// f() -> FAILURE, hex"08c379a0", 0x20, 4, "fail"
|