blob: 8490e6dd60415aa7508cd54340b13faaa37508e1 [file] [log] [blame]
// RUN: clang %s -verify -fsyntax-only
@class NSString;
void c1(id *a);
void t1()
{
NSString *s __attribute((cleanup(c1)));
}