aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/tuples_without_commas.sol
blob: d0e376b0b7201b10456b83b9e468636faaeb3929 (plain) (blame)
1
2
3
4
5
6
7
contract C {
    function f() {
        var a = (2 2);
    }
}
// ----
// ParserError: (42-42): Expected token Comma got 'Number'