solidity/test/libsolidity/syntaxTests/tryCatch/no_catch.sol
2022-04-01 23:41:18 -05:00

9 lines
172 B
Solidity

contract C {
function f() public returns (uint, uint) {
try this.f() {
}
}
}
// ----
// ParserError 2314: (97-98='}'): Expected 'catch' but got '}'