2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / parse / template3.C
blob290721eaa53c1ed9979c561da0c24d9cc4827a63
1 // { dg-do compile }
3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 24 Jan 2003 <nathan@codesourcery.com>
6 // PR 9403. We failed to parse template keyword, and we accepted code
7 // which required one.
9 template<bool> struct Outer;
11 template <bool b, typename T>
12 struct X : Outer<b>::template Inner<T>
13 {};
15 template <bool b, typename T>
16 struct Y : Outer<b>::Inner<T> {}; // { dg-error "" "" }