repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
Sema
/
builtin_objc_msgSend.c
blob
419e92da44ebcf6ff9279a6279604fd4cf8773be
1
// RUN: %clang_cc1 %s -fsyntax-only -verify
2
// expected-no-diagnostics
3
// rdar://8632525
4
5
typedef
struct
objc_class
*
Class
;
6
typedef
struct
objc_object
{
7
Class isa
;
8
} *
id
;
9
10
11
typedef
struct
objc_selector
*
SEL
;
12
extern
id
objc_msgSend
(
id self
,
SEL op
, ...);
13