// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited -triple %itanium_abi_triple %s -o - | FileCheck %s
// Test the various accessibility flags in the debug info.
;
// CHECK: !DIDerivedType(tag: DW_TAG_inheritance,{{.*}} baseType: ![[A]],{{.*}} flags: DIFlagPublic, extraData: i32 0)
;
;
;
;
;
// CHECK: !DISubprogram(name: "free",
// CHECK-SAME: flags: DIFlagPrototyped,
// CHECK-SAME: spFlags: DISPFlagDefinition
void
U u;
A a;
B b;
C c;
F f;
H h;