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