diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-01-26 20:35:32 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-01-26 20:35:32 +0000 |
commit | 1f3810623fc7adbff149585a49a3f174dafdea81 (patch) | |
tree | f1bb3fb888ce815570d5bab6ba43315e1d83940d /test/Parser/cxx0x-in-cxx98.cpp | |
parent | b47f74818094fabd8f150fb4d6d0fa8a6c52cde1 (diff) |
Improve the extension warning for the use of ref-qualifiers, to
distinguish them from rvalue references. Using the rvalue-references
warning was weird when the ref-qualifier was '&'.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@124316 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Parser/cxx0x-in-cxx98.cpp')
-rw-r--r-- | test/Parser/cxx0x-in-cxx98.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/Parser/cxx0x-in-cxx98.cpp b/test/Parser/cxx0x-in-cxx98.cpp new file mode 100644 index 0000000000..e0cbc23f58 --- /dev/null +++ b/test/Parser/cxx0x-in-cxx98.cpp @@ -0,0 +1,10 @@ +// RUN: %clang_cc1 -std=c++98 -fsyntax-only -verify %s + +inline namespace N { // expected-warning{{inline namespaces are a C++0x feature}} +struct X { + template<typename ...Args> // expected-warning{{variadic templates are a C++0x extension}} + void f(Args &&...) &; // expected-warning{{rvalue references are a C++0x extension}} \ + // expected-warning{{reference qualifiers on functions are a C++0x extension}} +}; +} + |