solidity/test/libsolidity/syntaxTests/parsing/tuples_without_commas.sol
2018-05-02 21:21:11 +01:00

8 lines
118 B
Solidity

contract C {
function f() {
var a = (2 2);
}
}
// ----
// ParserError: (42-42): Expected token Comma got 'Number'