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

12 lines
187 B
Solidity

contract C {
function f() public returns (uint, uint) {
try this.f() {
} catch () {
}
}
}
// ----
// ParserError 3546: (101-102=')'): Expected type name