================
@@ -1,19 +0,0 @@
-// RUN: clang-tidy %s -checks='-*,readability-simplify-boolean-expr' -- 
-std=c++17 | count 0
-struct RAII {};
-bool foo(bool Cond) {
-  bool Result;
-
-  if (RAII Object; Cond)
-    Result = true;
-  else
-    Result = false;
-
-  if (bool X = Cond; X)
-    Result = true;
-  else
-    Result = false;
-
-  if (bool X = Cond; X)
-    return true;
-  return false;
-}
----------------
vbvictor wrote:

Do any of these cases now pass?
If so we should add them to existing test cases. If not - leave as is.

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

Reply via email to