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

10 lines
235 B
Solidity

contract C {
function f() public returns (uint, uint) {
try f() {
} catch {
}
}
}
// ----
// TypeError 2536: (72-75='f()'): Try can only be used with external function calls and contract creation calls.