solidity/test/libsolidity/syntaxTests/tryCatch/no_external_call.sol

10 lines
229 B
Solidity

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