solidity/test/libsolidity/syntaxTests/tryCatch/empty_returns.sol
2019-09-23 17:22:56 +02:00

12 lines
163 B
Solidity

contract C {
function f() public {
try this.f() returns () {
} catch {
}
}
}
// ----
// ParserError: (69-70): Expected type name