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