mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
229 B
Solidity
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.
|