summaryrefslogtreecommitdiffstats
path: root/test/Rewriter/ivar-encoding-2.m
blob: 422568bf479c4c18488318dca31e56db96d3fd67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5  %s -o -

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

  id **ivar3;

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