* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / bracket3.C
blob93c714862b66fe2e968b6924bf0169a9688f7507
1 // { dg-do compile { target c++11 } }
2 // { dg-options "-std=c++98 -Wc++11-compat" }
4 template<int N> struct X {};
6 X<1 >> 2> x; // { dg-warning "is treated as|suggest parentheses" }
8 // From cp/parser.c
9 typedef int Y;
10 template <int V> struct Foo {};
11 Foo<Y () >> 5> r; // { dg-warning "is treated as|suggest parentheses" }