aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/objc/execute/fdecl.m
blob: 807be03814e221e194cd47e8781d14b459a4bc1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Bug report submitted by igorkh@hotbot.com on submit@bugs.debian.org
   Thu, 13 Apr 2000 09:42:08 -0400 */

@class AClass;

@interface test
{
        AClass *foo;
}
@end

@implementation test
@end

int main (void)
{
  return 0;
}