Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / parse / template3.C
blobd10d46d81334f9ad71c8f7bef43762d800a885ff
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 "used as template" "temp" }
17 // { dg-error "expected" "exp" { target *-*-* } 16 }
18 // { dg-message "note" "note" { target *-*-* } 16 }