================
@@ -0,0 +1,260 @@
+// RUN: %clang_cc1 -fsyntax-only -std=c++23 -verify %s
+
----------------
hokein wrote:

Can you add testcases for the template parameter packs? e.g. 

```
template <typename ...T> struct B {
  B(T...);
};
template <typename ...T> struct C : public B<T...> {
  using B<T...>::B;
};

C c(1);
```

https://github.com/llvm/llvm-project/pull/98788
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to