summaryrefslogtreecommitdiffstats
path: root/test/Rewriter/ivar-encoding-1.m
blob: d2949439c7332337d7ce843ab8fa08a889dcd294 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: %clang_cc1 -rewrite-objc -fobjc-fragile-abi  %s -o -

@interface Intf
{
  id ivar;
  id ivar1[12];

  id **ivar3;

  id (*ivar4) (id, id);
}
@end

@implementation Intf
@end