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
/
CodeGenObjC
/
debug-info-class-extension3.m
blob
f81445b47a212726515f7ba7d14c0411fdcfad80
1
// RUN: %clang_cc1 -S -debug-info-kind=limited %s -o - | FileCheck %s
2
3
// CHECK-NOT: AT_APPLE_objc_complete_type
4
5
@interface Foo {} @end
6
7
@interface Foo () {
8
int *bar;
9
}
10
@end
11
12
void bar(Foo *fptr) {}