aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/objc.dg/pch/interface-1.m
blob: 9bc7ef3a244f05163c16b58d0a03aa4a5a223c9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "interface-1.h"

@implementation TestClass
+ (int) test
{
  return 0;
}
@end

int main (void)
{
  return [TestClass test];
}