summaryrefslogtreecommitdiffstats
path: root/clang/test/Analysis/cxx11-crashes.cpp
blob: 9164850555b404905fca5197ff99f48703349f35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_cc1 -analyze -analyzer-checker=core -std=c++11 -verify %s

// radar://11485149, PR12871
class PlotPoint {
  bool valid;
};

PlotPoint limitedFit () {
  PlotPoint fit0;
  fit0 = limitedFit ();
  return fit0;
}
OpenPOWER on IntegriCloud