double x = 0,1;
doesn't compile (tries on on MSVC9.0). The error is
C2059 syntax error : 'constant'
I do realize that there's a comma there instead of a point, but shouldn't the line above be interpreted as the following?
double x = (0,1); //which is double x = 1;
Incidentally, the initialization compiles successfully with the parentheses.
I was thinking along the lines that operator , has a lower precedence than operator =, but in this case = is no operator, so this shouldn't be an issue. What syntactic rules determine that
double x = 0,1;
should be illegal?

double x = 0, y;? – Nabb Oct 30 '12 at 19:21double(x)(1), y;that is a valid declaration but can also be parsed as an expression. – Johannes Schaub - litb Oct 30 '12 at 20:42