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