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
9 template<bool> struct Outer;
11 template <bool b, typename T>
12 struct X : Outer<b>::template Inner<T>
15 template <bool b, typename T>
16 struct Y : Outer<b>::Inner<T> {}; // { dg-error "" "" }