libargo/test/test1.h
2021-05-05 22:45:22 +02:00

9 lines
93 B
C

#ifndef TEST1_H
#define TEST1_H
struct recursive {
int i;
struct recursive* r;
};
#endif