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;
}