Most vexing parse
This is known as "C++'s most vexing parse". Basically, anything that can be interpreted by compiler as function declaration will be interpreted as function declaration, even if resulting AST doesn't compile.
Another instance of the same problem:
std::ifstream ifs("file.txt");
std::vector<T> v(std::istream_iterator<T>(ifs), std::istream_iterator<T>());
v is interpreted as a declaration of function with 2 parameters and fails to compile.
The workaround is to add another pair of parentheses:
std::vector<T> v((std::istream_iterator<T>(ifs)), std::istream_iterator<T>());
Or, if you have C++11 and list-initialization (also known as uniform initialization) available:
std::vector<T> v{std::istream_iterator<T>{ifs}, std::istream_iterator<T>{}};
With this, there is no way it could be interpreted as a function declaration.
blahwould be a class. – Albert Aug 27 '10 at 21:03