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-tidy][modernize-use-starts-ends-with] Fix operator rewriting false negative...
[llvm-project.git]
/
clang
/
test
/
Sema
/
builtin_objc_msgSend.c
blob
d5a80f55eb82e691fb7a0e429d26b81b4d0191b7
1
// RUN: %clang_cc1 %s -fsyntax-only -verify
2
// expected-no-diagnostics
3
4
typedef
struct
objc_class
*
Class
;
5
typedef
struct
objc_object
{
6
Class isa
;
7
} *
id
;
8
9
10
typedef
struct
objc_selector
*
SEL
;
11
extern
id
objc_msgSend
(
id self
,
SEL op
, ...);
12