diff options
Diffstat (limited to 'tools/clang-tidy/test/clang-analyzer-cplusplus.NewDeleteLeaks.cpp')
-rw-r--r-- | tools/clang-tidy/test/clang-analyzer-cplusplus.NewDeleteLeaks.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/clang-tidy/test/clang-analyzer-cplusplus.NewDeleteLeaks.cpp b/tools/clang-tidy/test/clang-analyzer-cplusplus.NewDeleteLeaks.cpp new file mode 100644 index 0000000000..60772a30db --- /dev/null +++ b/tools/clang-tidy/test/clang-analyzer-cplusplus.NewDeleteLeaks.cpp @@ -0,0 +1,6 @@ +// https://clang-analyzer.llvm.org/available_checks.html + +void test() +{ + int *p = new int; +} // warning |