mirror of
https://github.com/Kitware/CMake.git
synced 2025-06-26 22:37:32 +08:00

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();
|
|
}
|