Sign in
fuchsia
/
third_party
/
swift-clang
/
c6596596c103623b9f9e1442f172b1d5a51336a9
/
.
/
test
/
SemaObjC
/
selector-2.m
blob: 17d1872cc7ea24168a85a92b02449bb4ede172e7 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -Wselector -verify %s
// expected-no-diagnostics
// rdar://8851684
@interface
I
-
length
;
@end
static
inline
SEL
IsEmpty
()
{
return
@selector
(
length
);
}
int
main
(
int
argc
,
const
char
*
argv
[])
{
return
0
;
}