aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/dependencyFinder/test1.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/dependencyFinder/test1.qbs')
-rw-r--r--tests/auto/dependencyFinder/test1.qbs16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/auto/dependencyFinder/test1.qbs b/tests/auto/dependencyFinder/test1.qbs
new file mode 100644
index 000000000..dd0e11325
--- /dev/null
+++ b/tests/auto/dependencyFinder/test1.qbs
@@ -0,0 +1,16 @@
+Module {
+ includePaths: foo + abc.def
+ foo: bar
+
+ car: {
+ var x = 12
+ x = 13
+ var aaa = function aa(x1, x2) {
+ function bbb() { bbb() }
+ x = x1 + x2 + x2.def
+ aa(x1, x2)
+ bbb();
+ }
+ return aaa(x, includePaths)
+ }
+}