blob: cbe15a1abb57f608c5bbec7d76bcbe451fb71448 [file] [log] [blame]
// RUN: clang %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;
}