aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/ivar-encoding-1.m
blob: 1f7812fadf0a37d0fcb9163f722caa4837d390c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: clang -rewrite-test -verify %s

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

  id **ivar3;

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

@implementation Intf
@end