xref: /aosp_15_r20/external/clang/test/Modules/Inputs/diamond_left.h (revision 67e74705e28f6214e480b399dd47ea732279e315)
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