solidity/test/libsolidity/syntaxTests/parsing/tuples_decl_without_rhs.sol
2022-04-01 23:41:18 -05:00

8 lines
153 B
Solidity

contract C {
function f() public pure {
(uint a, uint b, uint c);
}
}
// ----
// ParserError 2314: (76-77=';'): Expected '=' but got ';'