mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
17 lines
493 B
Solidity
17 lines
493 B
Solidity
pragma experimental SMTChecker;
|
|
contract C {
|
|
function f() public {
|
|
try this.f() {}
|
|
catch (bytes memory x) {
|
|
x;
|
|
}
|
|
}
|
|
}
|
|
// ====
|
|
// EVMVersion: >=byzantium
|
|
// ----
|
|
// Warning 7645: (83-85): Assertion checker does not support try/catch clauses.
|
|
// Warning 7645: (88-122): Assertion checker does not support try/catch clauses.
|
|
// Warning 7645: (83-85): Assertion checker does not support try/catch clauses.
|
|
// Warning 7645: (88-122): Assertion checker does not support try/catch clauses.
|