hokein added a comment.

In D136564#3890676 <https://reviews.llvm.org/D136564#3890676>, @rtrieu wrote:

> I noticed some build failures after your commit.  I'm trying to get a 
> standalone reproducer.

Here is the broken testcase:

  // -std=c++17
  #include <string>
  
  template <typename Type, typename... Unused>
  using FixedTypeT = Type;
  
  template <typename... Fields>
  class T {
    T(const FixedTypeT<std::string_view, Fields>... names)
        : names_(std::string(names)...) {}
    std::string names_;
  };


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D136564/new/

https://reviews.llvm.org/D136564

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to