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