aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/friend34.C
blob: 555cf358a7dc7895a0565ca9cf2f1f2102825dce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// { dg-do compile }

// Origin: mleone@pixar.com
//	   Wolfgang Bangerth <bangerth@ticam.utexas.edu>

// PR c++/9783: Forward declaration of class in template.

template <typename T>
struct C {
  void foo (struct X *);
};

struct X {};

template <typename T>
void C<T>::foo(struct X *) {}