summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/interface-layout-2.m
blob: ec03a00ca75ef11d319a6961847379b2cd6a0670 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// RUN: clang-cc %s -fsyntax-only -verify
@interface A
{
  int ivar;
}
@end

@interface B : A
- (int)ivar;
@end

@implementation B
- (int)ivar {
  return ivar;
} 
@end
OpenPOWER on IntegriCloud