xref: /llvm-project/clang/test/Modules/Inputs/diamond_left.h (revision 5418f40127d5e0b1f3d26f292b786e7eabd93c6c)
1 int top_left_before(void *);
2 
3 @import diamond_top;
4 
5 float left(float *);
6 
7 int top_left(char *c);
8 
9 int left_and_right(int*);
10 
11 
12