mirror of
https://github.com/Kitware/CMake.git
synced 2025-07-18 04:29:16 +08:00
8 lines
85 B
C
8 lines
85 B
C
/* depends on NoDepB */
|
|
void NoDepB_func();
|
|
|
|
void NoDepA_func()
|
|
{
|
|
NoDepB_func();
|
|
}
|