aboutsummaryrefslogtreecommitdiff
path: root/test/Analysis/dtor-cxx11.cpp
blob: 7d2e87e44e4b33f80e822140bf3c31c8d9e403f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: %clang_cc1 -analyze -std=c++11 -analyzer-checker=core,unix.Malloc,debug.ExprInspection -analyzer-config cfg-temporary-dtors=true -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()}) {}
  }
}