OSDN Git Service

PR c++/27177
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / error2.C
1 // { dg-do compile }
2
3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 14 Aug 2003 <nathan@codesourcery.com>
5
6 // instantiated from did not indicate the nested class
7
8 template<class T> struct X
9 {
10   T m; // { dg-error "" "" }
11 };
12
13 template<class T >
14 struct Derived
15 {
16   class Nested : public X<T>
17   { // { dg-error "instantiated" "" }
18   };
19   
20   Nested m; // { dg-error "instantiated" "" }
21   
22   void Foo ();
23 };
24
25 void Foo (Derived<void> &x)
26 {
27   x.Foo (); // { dg-error "instantiated" "" }
28 }