solidity/test/libsolidity/semanticTests/revertStrings/bubble.sol
2020-05-05 07:05:39 +02:00

17 lines
263 B
Solidity

contract A {
function g() public { revert("fail"); }
}
contract C {
A a = new A();
function f() public {
a.g();
}
}
// ====
// compileViaYul: also
// EVMVersion: >=byzantium
// revertStrings: debug
// ----
// f() -> FAILURE, hex"08c379a0", 0x20, 4, "fail"