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

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

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