solidity/test/libsolidity/syntaxTests/tryCatch/simple_catch.sol
2021-04-20 17:38:29 +02:00

11 lines
108 B
Solidity

contract C {
function f() public {
try this.f() {
} catch {
}
}
}
// ----