19 lines
248 B
Objective-C
19 lines
248 B
Objective-C
// 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;
|
|
}
|
|
|