blob: 88c6f1054c8d1fb52b2df97a6a18eae9237d9db9 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc %s -verify -fsyntax-only
Chris Lattnera9c01022007-09-26 22:06:30 +00002#include <stdio.h>
3
4@interface Greeter
5+ (void) hello;
6@end
7
8@implementation Greeter
9+ (void) hello {
10 fprintf(stdout, "Hello, World!\n");
11}
12@end
13
14int main (void) {
15 [Greeter hello];
16 return 0;
17}
18