There is this code:
class A;
template <class T>
void fun() {
A a;
}
class A {
public:
A() { }
};
int main() {
fun<int>();
return 0;
}
g++ 4.5 and g++ 4.7 compiles this without error. But clang++ 3.2 (trunk) gives this error:
main.cpp:5:6: error: variable has incomplete type 'A'
A a;
^
main.cpp:1:7: note: forward declaration of 'A'
class A;
^
Which compiler is right then according to C++ standard?

Athe compiler has to know its size which it cannot know without having seen the full definition, so clang would be right here (but I don't have the std reference). – honk Jun 12 '12 at 9:33