blob: 9d1996c5ad4b7a6efd8b83ff0dbd7b7efeb7fc37 [file] [log] [blame]
/* APPLE LOCAL file radar 6404979 */
/* Error on use of _self. */
/* { dg-options "-mmacosx-version-min=10.5 -fblocks" { target *-*-darwin* } } */
/* { dg-do compile } */
void foo (void*);
int main(void)
{
foo (^{ _self; }); /* { dg-error "\\'_self\\' undeclared" } */
/* { dg-error "\\(Each undeclared identifier" "" { target *-*-* } 10 } */
/* { dg-error "for each function it appears in" "" { target *-*-* } 10 } */
return 0;
}