solidity/test/libsolidity/syntaxTests/tryCatch/no_catch.sol
2020-07-23 14:28:28 +02:00

9 lines
168 B
Solidity

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