Files
tests/C_C++/emil_header_guards/a.h
2024-07-22 19:38:36 +02:00

12 lines
75 B
C

#ifndef A_H
#include "b.h"
struct a {
int i;
};
#define A_H
#endif