blob: 13f51ecdc8ffb2ffdb395504d1e4dd27102cdb7f [file] [log] [blame]
/* APPLE LOCAL file radar 5834569 */
/* Do not issue unused variable warning on blocks. */
/* { dg-do compile } */
/* { dg-options "-Wall" } */
int main() {
__byref int x = 10;
int y = 1;
int (^myBlock)(void) = ^{ return x+y; };
myBlock();
return 0;
}