================
@@ -0,0 +1,12 @@
+// RUN: %clang_analyze_cc1 -analyzer-config 
aggressive-binary-operation-simplification=true 
-analyzer-checker=alpha.cplusplus.MismatchedIterator -analyzer-output text 
-verify %s
+
+// expected-no-diagnostics
+
+#include "Inputs/system-header-simulator-cxx.h"
+
+void f()
+{
+    std::list<int> l;
+    std::unordered_set<int> us;
+    us.insert(l.cbegin(), l.cend()); // no warning
----------------
flovent wrote:

This file is deleted in new commit

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

Reply via email to