BREAK が定義されている場合、g++ 4.7.2 は以下をコンパイルしません。これは有効な C++ だと思います。A<U> tmp
が何か他のものに変更された場合、定義された BREAK でコンパイルされますA<int> tmp
。これにより、ここでの最小限のテストケースが機能しますが、実際のアプリケーションではうまくいきません。合法的な C++ ではないものはありますか?
template <typename T>
class B {
};
template <typename T>
class A {
public:
template <typename U> B<U> *alloc_B( );
};
template <typename T> template <typename U>
B<U> *A<T>::alloc_B( ) {
return new B<U>( );
}
#ifdef BREAK
template <typename T>
class C {
public:
template <typename U> void x(B<U> &b) {
A<U> tmp;
B<U> *tmp2;
tmp2 = tmp.alloc_B<U>( );
delete tmp2;
}
};
#endif
int main( ) {
A<int> a;
B<float> *bp = a.alloc_B<float>( );
delete bp;
#ifdef BREAK
C<int> c;
B<float> b;
c.x(b);
#endif
}