OSDN Git Service

2009-02-02 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / implicit-typename2.C
1 // { dg-do compile }
2
3 // Origin: Wolfgang Bangerth <bangerth@ticam.utexas.edu>
4
5 // PR c++/11039: Implicit typename warning in friend class declaration.
6
7 template <typename T> struct X {
8   struct Y {
9     struct Z {};
10   };
11   friend struct Y::Z;
12 };