1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// { dg-do run } // Compiler: egcs-2.91.12 980302 // Error: compiler error in ctor of 'foo::bar<T>::bar(T const &)' struct foo { template <typename T> struct bar { bar(T const &t) : tt(t) {} T tt; }; }; int main() { foo::bar<int> fb(3); return 0; }