xref: /llvm-project/clang/test/SemaObjC/attr-cleanup.m (revision 22db4824b9e03fe8c2e9217d6832b71ac23c175f)
1// RUN: %clang_cc1 %s -verify -fsyntax-only
2// expected-no-diagnostics
3
4@class NSString;
5
6void c1(id *a);
7
8void t1(void)
9{
10  NSString *s __attribute((cleanup(c1)));
11}
12