summaryrefslogtreecommitdiffstats
path: root/test/Analysis/stack-block-returned.cpp
blob: b45cf6335b900b62960394078303e2b6da4d03c7 (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang_analyze_cc1 -analyzer-checker=core -analyzer-store=region -fblocks -verify %s

typedef void (^bptr)(void);

bptr bf(int j) {
  __block int i;
  const bptr &qq = ^{ i=0; }; // expected-note {{binding reference variable 'qq' here}}
  return qq; // expected-error {{returning block that lives on the local stack}}
}