diff options
Diffstat (limited to 'clang/test/SemaCXX')
-rw-r--r-- | clang/test/SemaCXX/cxx1y-generic-lambdas.cpp | 2 | ||||
-rw-r--r-- | clang/test/SemaCXX/libstdcxx_pair_swap_hack.cpp | 2 | ||||
-rw-r--r-- | clang/test/SemaCXX/make_integer_seq.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/SemaCXX/cxx1y-generic-lambdas.cpp b/clang/test/SemaCXX/cxx1y-generic-lambdas.cpp index 3774e8d3834..1993c6e1853 100644 --- a/clang/test/SemaCXX/cxx1y-generic-lambdas.cpp +++ b/clang/test/SemaCXX/cxx1y-generic-lambdas.cpp @@ -912,7 +912,7 @@ struct X1 { template<class T> template<class U> int X1::X2<T>::fooG3(T (*fp)(U)) { return 0; } -X1::X2<int> x2; //expected-note 3{{in instantiation of}} +X1::X2<int> x2; //expected-note {{in instantiation of}} int run1 = x2.fooG2(); int run2 = x2.fooG3(); } // end ns diff --git a/clang/test/SemaCXX/libstdcxx_pair_swap_hack.cpp b/clang/test/SemaCXX/libstdcxx_pair_swap_hack.cpp index 9f9c71a50ce..dff599b6d5b 100644 --- a/clang/test/SemaCXX/libstdcxx_pair_swap_hack.cpp +++ b/clang/test/SemaCXX/libstdcxx_pair_swap_hack.cpp @@ -88,7 +88,7 @@ namespace sad { CLASS<int, int> pi; - static_assert(!noexcept(pi.swap(pi)), ""); // expected-note {{in instantiation of}} + static_assert(!noexcept(pi.swap(pi)), ""); // expected-note 2{{in instantiation of exception specification for 'swap'}} } #endif diff --git a/clang/test/SemaCXX/make_integer_seq.cpp b/clang/test/SemaCXX/make_integer_seq.cpp index a9b8d2b23cb..8f72ce15eef 100644 --- a/clang/test/SemaCXX/make_integer_seq.cpp +++ b/clang/test/SemaCXX/make_integer_seq.cpp @@ -43,7 +43,7 @@ enum Color : int { Red, Blue }; using illformed1 = ErrorSeq<Color, Blue>; // expected-note{{in instantiation}} -using illformed2 = ErrorSeq<int, -5>; +using illformed2 = ErrorSeq<int, -5>; // expected-note{{in instantiation}} template <typename T, T N> void f() {} __make_integer_seq<f, int, 0> x; // expected-error{{template template parameter must be a class template or type alias template}} |