mirror of
https://github.com/reactos/CMake.git
synced 2024-12-17 16:46:37 +00:00
15 lines
237 B
C++
15 lines
237 B
C++
|
|
||
|
#include "skipSource/qItemA.hpp"
|
||
|
#include "skipSource/qItemB.hpp"
|
||
|
#include "skipSource/qItemC.hpp"
|
||
|
|
||
|
int main(int, char**)
|
||
|
{
|
||
|
QItemA itemA;
|
||
|
QItemA itemB;
|
||
|
QItemA itemC;
|
||
|
|
||
|
// Fails to link if the symbol is not present.
|
||
|
return 0;
|
||
|
}
|