llvm-for-llvmta/tools/clang/test/Modules/Inputs/lsv-debuginfo/B/B.h

15 lines
154 B
C++

#ifndef B_H
#define B_H
#include <A/ADT.h>
#include <C/C.h>
namespace llvm {
struct S {
unsigned a, b, c, d;
};
class C {
Optional<S> S;
};
}
#endif