solidity/test/libsolidity/syntaxTests/tryCatch/catch_custom.sol

15 lines
197 B
Solidity

contract C {
error E();
function f() public {
try this.f() {
} catch E() {
}
}
}
// ====
// EVMVersion: >=byzantium
// ----
// UnimplementedFeatureError: NONE