blob: c1f69266b3b93dc3e4531e1e3e3f7662f493fc49 [file] [log] [blame]
Fariborz Jahaniana34194f2012-03-08 00:22:50 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -Wuninitialized -fblocks -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
2// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -Wuninitialized -fblocks -verify %s
3
4// rdar://10817031
5
6int main() {
7 void (^arc_fail)() = ^() { // expected-warning {{block pointer variable 'arc_fail' is uninitialized when captured by block}} \
8 // expected-note {{consider using a '__block' variable 'arc_fail' to silence this warning}}
9 arc_fail(); // BOOM
10 };
11}
12// CHECK: {7:12-7:12}:"__block "