blob: 1e40c196ed3ca7b331a1b5070f56645f8508fcb7 [file] [log] [blame]
/* APPLE LOCAL file radar 5732232 - radar 6230297 - blocks */
/* { dg-do compile } */
/* { dg-options "-fblocks" } */
void (^test3())(void) {
__block int i;
return ^{i = 1; }; /* { dg-error "returning block that lives on the local stack" } */
}