solidity/test/libsolidity/syntaxTests/tryCatch/wrong_panic.sol
2020-12-22 11:08:44 +01:00

12 lines
219 B
Solidity

contract C {
function f() public {
try this.f() {
} catch Panic() {
}
}
}
// ====
// EVMVersion: >=byzantium
// ----
// TypeError 1271: (72-97): Expected `catch Panic(uint ...) { ... }`.