mirror of
https://github.com/reactos/CMake.git
synced 2025-01-01 16:28:18 +00:00
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
64 B
C
7 lines
64 B
C
extern int imp_lib1(void);
|
|
|
|
int main()
|
|
{
|
|
return imp_lib1();
|
|
}
|