summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/qmake/testdata/findDeps/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/tools/qmake/testdata/findDeps/main.cpp')
-rw-r--r--tests/auto/tools/qmake/testdata/findDeps/main.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/auto/tools/qmake/testdata/findDeps/main.cpp b/tests/auto/tools/qmake/testdata/findDeps/main.cpp
index e4aa5c6251..0df3f9b7c3 100644
--- a/tests/auto/tools/qmake/testdata/findDeps/main.cpp
+++ b/tests/auto/tools/qmake/testdata/findDeps/main.cpp
@@ -31,6 +31,9 @@
**
****************************************************************************/
+#define spurious \
+ / #include "needed.cpp"
+// if not ignored, symbol needed() won't be available ...
#include <moc_object1.cpp>
/**/ #include <moc_object2.cpp>
@@ -49,5 +52,7 @@ static void function2(); /**/
static void function3(); //
#include <moc_object9.cpp>
-int main () {}
-
+int main () {
+ extern int needed(void);
+ return needed();
+}