blob: 764bb7bae073f84cf598e3aa5e850043180dc1be [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -fsyntax-only -std=c++98 -verify %s
Douglas Gregor3965b7b2009-02-25 23:02:36 +00002template<typename T> struct X;
3template<int I> struct Y;
4
5X<X<int> > *x1;
6X<X<int>> *x2; // expected-error{{a space is required between consecutive right angle brackets (use '> >')}}
7
8X<X<X<X<int>> // expected-error{{a space is required between consecutive right angle brackets (use '> >')}}
9 >> *x3; // expected-error{{a space is required between consecutive right angle brackets (use '> >')}}
10
11Y<(1 >> 2)> *y1;
Douglas Gregor4b2d3f72009-02-26 21:00:50 +000012Y<1 >> 2> *y2; // expected-warning{{use of right-shift operator ('>>') in template argument will require parentheses in C++0x}}