aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/objc/compile/method-1.m
blob: e9bb989bef6d73e9e0e0488a07d8a1f2de1739a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* PR objc/29195 */
/* Test that array decls are changed to a pointer type
   correctly and make sure we don't crash because the
   decl was not relayed out.   */

@ implementation NGActiveSocket 
+ (void) socketPair:(int [2])
     _pair 
{
  _pair[0] = 0;
}
@end