add test case for #6365
parent
206e9e5097
commit
f80dcb4f33
5 changed files with 35 additions and 0 deletions
@ -0,0 +1,6 @@ |
||||
void outer_lib_func(void); |
||||
|
||||
int main(void) { |
||||
outer_lib_func(); |
||||
return 0; |
||||
} |
@ -0,0 +1,6 @@ |
||||
#!/usr/bin/env python3 |
||||
|
||||
import shutil, sys |
||||
|
||||
if __name__ == '__main__': |
||||
shutil.copyfile(sys.argv[1], sys.argv[2]) |
@ -0,0 +1 @@ |
||||
void inner_lib_func(void) {} |
@ -0,0 +1,3 @@ |
||||
void inner_lib_func(void); |
||||
|
||||
void outer_lib_func(void) { inner_lib_func(); } |
Loading…
Reference in new issue