repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
clang
/
test
/
SemaObjC
/
interface-layout-2.m
blob
17e34d4681bde056d6ebeacf6b09672cf41f2363
1
// RUN: %clang_cc1 %s -fsyntax-only -verify
2
// expected-no-diagnostics
3
@interface A
4
{
5
int ivar;
6
}
7
@end
8
9
@interface B : A
10
- (int)ivar;
11
@end
12
13
@implementation B
14
- (int)ivar {
15
return ivar;
16
}
17
@end