d6bdaf9f13
This tests linking to an imported target that is not visible but is a transitive dependency of a target that is visible. See issue #8843.
7 lines
72 B
C
7 lines
72 B
C
extern int testLib2(void);
|
|
|
|
int imp_lib1(void)
|
|
{
|
|
return testLib2();
|
|
}
|