https://bugs.llvm.org/show_bug.cgi?id=49753

            Bug ID: 49753
           Summary: Clang parser error when combining pack expansion with
                    concepts
           Product: clang
           Version: trunk
          Hardware: PC
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P
         Component: Frontend
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected], [email protected],
                    [email protected]

#include <concepts>

template <typename... Ts>
struct A {
  A(std::same_as<Ts> auto);
};

int main() {
  A<int>(0);
}

https://godbolt.org/z/dsroYod1s

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to