2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / parse / template4.C
blob11f11d53525a8b7c2467480a0b6fbbf652b92ad6
1 // { dg-do compile }
3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 32 Jan 2003 <nathan@codesourcery.com>
6 // PR 795. fields are not necessarily a dependent type.
8 struct V
10   template<typename T> T get ();
13 struct L
15   V v;
16   
17   template<typename T> T at (int i)
18   {
19     return v.get<T> ();
20   }