solidity/test/libsolidity/syntaxTests/parsing/tuples_without_commas.sol
2022-04-01 23:41:18 -05:00

8 lines
124 B
Solidity

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