]> granicus.if.org Git - clang/commitdiff
Add regression test for PR41576 (which is already fixed in trunk,
authorRichard Smith <richard-llvm@metafoo.co.uk>
Tue, 25 Jun 2019 18:42:53 +0000 (18:42 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Tue, 25 Jun 2019 18:42:53 +0000 (18:42 +0000)
perhaps by r361300).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@364340 91177308-0d34-0410-b5e6-96231b3b80d8

test/SemaTemplate/lambda-capture-pack.cpp

index 2fe576769dbdf786a108a67298e225cefeed5ea0..8b8a55ccd778478536c98eb02fdcd2a85d6c1d41 100644 (file)
@@ -1,5 +1,4 @@
 // RUN: %clang_cc1 -std=c++2a -verify %s
-// expected-no-diagnostics
 
 template<typename ...T, typename ...Lambda> void check_sizes(Lambda ...L) {
   static_assert(((sizeof(T) == sizeof(Lambda)) && ...));
@@ -15,3 +14,12 @@ template<typename ...T> void f(T ...v) {
 }
 
 template void f(int, char, double);
+
+namespace PR41576 {
+  template <class... Xs> constexpr int f(Xs ...xs) {
+    return [&](auto ...ys) { // expected-note {{instantiation}}
+      return ((xs + ys), ...); // expected-warning {{unused}}
+    }(1, 2);
+  }
+  static_assert(f(3, 4) == 6); // expected-note {{instantiation}}
+}