mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
295 B
Solidity
15 lines
295 B
Solidity
contract C {
|
|
function f() public returns (uint, uint) {
|
|
try this.f() {
|
|
|
|
} catch {
|
|
} catch (bytes memory y) {
|
|
y;
|
|
}
|
|
}
|
|
}
|
|
// ====
|
|
// EVMVersion: >=byzantium
|
|
// ----
|
|
// TypeError: (112-161): This try statement already has a low-level catch clause.
|