================ @@ -0,0 +1,64 @@ +// RUN: %clang_analyze_cc1 -analyzer-checker=core,debug.ExprInspection \ +// RUN: -verify %s + +void clang_analyzer_checkInlined(bool); +void clang_analyzer_eval(bool); + +typedef void (*Callback)(unsigned); +typedef void (&CallbackRef)(unsigned); ---------------- steakhal wrote:
For C++ files it's probably more natural to use `using` over `typedef`. https://github.com/llvm/llvm-project/pull/217608 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
