blob: 8193dd5045978d91e50389e812d3690bec775205 [file] [log] [blame]
/* APPLE LOCAL file radar 6096219 */
/* Test that __block attribute can be used directly. */
/* { dg-options "-mmacosx-version-min=10.5 -fblocks" { target *-*-darwin* } } */
/* { dg-do compile } */
int main()
{
__block int JJJJ;
__attribute__((__blocks__(byref))) int III;
int (^XXX)(void) = ^{ return III+JJJJ; };
}