]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/SemaObjC/attr-cleanup.m
Vendor import of clang trunk r130700:
[FreeBSD/FreeBSD.git] / test / SemaObjC / attr-cleanup.m
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 }