================
@@ -0,0 +1,252 @@
+// RUN: %clangxx -std=c++20 -fsyntax-only -Xclang -verify %s
+
+#include <initializer_list>
----------------
Sirraide wrote:

```suggestion
namespace std {
template <typename T>
struct initializer_list {
    const T* begin;
    const T* end;
};
}
```

Regression tests should never include standard library headers; adding this 
should suffice for the tests in this file.

https://github.com/llvm/llvm-project/pull/188196
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to