aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/crash30.C
blob: 13dc37af68d795b820bbbc703565e312da00a80d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Build don't link:

extern "C" int printf(const char *, ...);
template <class T> struct A {
  typedef typename T::X B; // ERROR - not a class
  A(double);
};
 
template <class T> void xxx(typename A<T>::B);
 
template <class T> struct B {
  friend void xxx<T>(T); // ERROR - does not match any template
};
 
template struct B<double>; // ERROR -