bolt/deps/llvm-18.1.8/clang/test/Modules/Inputs/unavailable-local-visibility/b.h
2025-02-14 19:21:04 +01:00

13 lines
131 B
C

#ifndef B_H
#define B_H
#include "a.h"
#ifndef A_H
#error where is a?
#endif
#ifndef X_H
#error where is x?
#endif
X f();
#endif