Home | History | Annotate | Download | only in SemaObjC
      1 // RUN: %clang_cc1 %s -verify -fsyntax-only
      2 
      3 @class NSString;
      4 
      5 void c1(id *a);
      6 
      7 void t1()
      8 {
      9   NSString *s __attribute((cleanup(c1)));
     10 }
     11