solidity/test/libsolidity/syntaxTests/tryCatch/no_external_call.sol
2019-09-23 17:22:56 +02:00

10 lines
224 B
Solidity

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