llvm-for-llvmta/tools/clang/test/SemaObjCXX/Inputs/arc-system-header.h

15 lines
126 B
C
Raw Permalink Normal View History

2022-04-25 13:02:35 +02:00
@interface B
@end
@interface A {
@public
union {
struct {
B *b;
} a_b;
void *void_ptr;
} data;
}
@end