solidity/test/libsolidity/syntaxTests/tryCatch/error_and_panic.sol
2020-12-22 11:08:44 +01:00

12 lines
192 B
Solidity

contract C {
function f() public {
try this.f() {
} catch Error(string memory) {
} catch Panic(uint) {
}
}
}
// ====
// EVMVersion: >=byzantium
// ----