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

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

  id **ivar3;

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

@implementation Intf
@end