repo.or.cz
/
clang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git]
/
test
/
SemaObjC
/
attr-cleanup.m
blob
8415c698f3485de4bd8c374b38c46e505d30e66e
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
}