OSDN Git Service

comment/style fixes
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / objc / compile / 20060406-1.m
1 typedef struct
2 {
3   void *p;
4 } *S;
5
6 @protocol O
7 - (unsigned)j;
8 @end
9
10 @interface I
11 + (unsigned char)T:(S<O>[2])p v:(S<O>)h;
12 @end
13
14 @implementation I
15 + (unsigned char)T:(S<O>[2])p v:(S<O>)h
16 {
17   p[0] = (S) 0;
18   p[1] = (S) 0;
19   return 0;
20 }
21 @end