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

            Bug ID: 49632
           Summary: Segmentation fault when pack expansion with lambda
           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]

void f(auto... args) {
  ([=](auto...) -> decltype(args) { return {}; } (), ...);
}

int main() {
  f(0);
}


(goldbot: https://godbolt.org/z/17rhfh)

-- 
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