mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
197 B
Solidity
15 lines
197 B
Solidity
contract C {
|
|
error E();
|
|
function f() public {
|
|
try this.f() {
|
|
|
|
} catch E() {
|
|
|
|
}
|
|
}
|
|
}
|
|
// ====
|
|
// EVMVersion: >=byzantium
|
|
// ----
|
|
// UnimplementedFeatureError: NONE
|