1#ifndef B_H2#define B_H3#include "a.h"4 5#ifndef A_H6#error where is a?7#endif8 9#ifndef X_H10#error where is x?11#endif12X f();13#endif14