I vaguely recall seeing this before in an answer to another question, but searching has failed to yield the answer.
I can\'t recall what is the proper way t
Curiously, this rule doesn't apply if the type is deduced in C++0x.
int a; decltype(&a) i, j;
Both i and j are int*.