mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-04 21:00:17 -06: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();
|
|
}
|