Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
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
;
}