diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-06-13 06:59:07 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-06-13 06:59:07 +0000 |
commit | a5d5c749b1acb6fdbd6f6e6440b316f73e9b876e (patch) | |
tree | 14420ba001e5a7febe2d6b527727880d9ab38c2f /clang/test/CXX/temp/temp.param/p15.cpp | |
parent | 4be788c56a960faabed5fe5efbeb8af896deaf90 (diff) | |
download | bcm5719-llvm-a5d5c749b1acb6fdbd6f6e6440b316f73e9b876e.tar.gz bcm5719-llvm-a5d5c749b1acb6fdbd6f6e6440b316f73e9b876e.zip |
Move a bunch of tests into temp.param, and write a few tests for paragraphs that hadn't been touched before
llvm-svn: 73288
Diffstat (limited to 'clang/test/CXX/temp/temp.param/p15.cpp')
-rw-r--r-- | clang/test/CXX/temp/temp.param/p15.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/clang/test/CXX/temp/temp.param/p15.cpp b/clang/test/CXX/temp/temp.param/p15.cpp new file mode 100644 index 00000000000..764bb7bae07 --- /dev/null +++ b/clang/test/CXX/temp/temp.param/p15.cpp @@ -0,0 +1,12 @@ +// RUN: clang-cc -fsyntax-only -std=c++98 -verify %s +template<typename T> struct X; +template<int I> struct Y; + +X<X<int> > *x1; +X<X<int>> *x2; // expected-error{{a space is required between consecutive right angle brackets (use '> >')}} + +X<X<X<X<int>> // expected-error{{a space is required between consecutive right angle brackets (use '> >')}} + >> *x3; // expected-error{{a space is required between consecutive right angle brackets (use '> >')}} + +Y<(1 >> 2)> *y1; +Y<1 >> 2> *y2; // expected-warning{{use of right-shift operator ('>>') in template argument will require parentheses in C++0x}} |