mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 14:20:06 -06:00
10 lines
170 B
C++
10 lines
170 B
C++
|
|
extern int qInitResources_second_resource();
|
|
|
|
int main(int, char**)
|
|
{
|
|
// Fails to link if the symbol is not present.
|
|
qInitResources_second_resource();
|
|
return 0;
|
|
}
|