diff options
Diffstat (limited to 'clang/test/CXX/temp/temp.spec/cxx1y-variable-template-no-body.cpp')
-rw-r--r-- | clang/test/CXX/temp/temp.spec/cxx1y-variable-template-no-body.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/test/CXX/temp/temp.spec/cxx1y-variable-template-no-body.cpp b/clang/test/CXX/temp/temp.spec/cxx1y-variable-template-no-body.cpp index 7eb5e3744d1..3b54a8c3a65 100644 --- a/clang/test/CXX/temp/temp.spec/cxx1y-variable-template-no-body.cpp +++ b/clang/test/CXX/temp/temp.spec/cxx1y-variable-template-no-body.cpp @@ -2,6 +2,7 @@ // RUN: cp %s %t // RUN: not %clang_cc1 --std=c++1y -x c++ -fixit %t -DFIXING // RUN: %clang_cc1 --std=c++1y -x c++ %t -DFIXING +// REQUIRES: rewriter template<typename T> T pi = T(3.1415926535897932385); // expected-note {{template is declared here}} |