mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-30 00:06:05 +00:00

Summary: Remove explicit -analyzer-config cfg-temporary-dtors=true in analyzer tests, since this option defaults to true since r326461. Reviewers: NoQ Reviewed By: NoQ Subscribers: cfe-commits Differential Revision: https://reviews.llvm.org/D46393 llvm-svn: 331520
16 lines
342 B
C++
16 lines
342 B
C++
// RUN: %clang_analyze_cc1 -std=c++11 -analyzer-checker=core,unix.Malloc,debug.ExprInspection -Wno-null-dereference -verify %s
|
|
// expected-no-diagnostics
|
|
|
|
#include "Inputs/system-header-simulator-cxx.h"
|
|
|
|
namespace Cxx11BraceInit {
|
|
struct Foo {
|
|
~Foo() {}
|
|
};
|
|
|
|
void testInitializerList() {
|
|
for (Foo foo : {Foo(), Foo()}) {}
|
|
}
|
|
}
|
|
|