aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/tuples_decl_without_rhs.sol
blob: dba3e7acc9f4fc9f568b1caca3e581e4cc164008 (plain) (blame)
1
2
3
4
5
6
7
contract C {
    function f() public pure {
        (uint a, uint b, uint c);
    }
}
// ----
// ParserError: (76-77): Expected '=' but got ';'