solidity/test/libsolidity/syntaxTests/parsing/tuples_without_commas.sol
2018-05-09 14:08:25 +02:00

8 lines
114 B
Solidity

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