blob: 9164850555b404905fca5197ff99f48703349f35 [file] [log] [blame]
Anna Zaks719b4292012-05-18 22:47:43 +00001// RUN: %clang_cc1 -analyze -analyzer-checker=core -std=c++11 -verify %s
2
3// radar://11485149, PR12871
4class PlotPoint {
5 bool valid;
6};
7
8PlotPoint limitedFit () {
9 PlotPoint fit0;
10 fit0 = limitedFit ();
11 return fit0;
12}