Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
6bad354120ce0d35901e86ca63e5534b7b9ed092
/
.
/
test
/
SemaObjC
/
unused.m
blob: 88c6f1054c8d1fb52b2df97a6a18eae9237d9db9 [
file
] [
log
] [
blame
]
// RUN: clang-cc %s -verify -fsyntax-only
#include
<stdio.h>
@interface
Greeter
+
(
void
)
hello
;
@end
@implementation
Greeter
+
(
void
)
hello
{
fprintf
(
stdout
,
"Hello, World!\n"
);
}
@end
int
main
(
void
)
{
[
Greeter
hello
];
return
0
;
}