aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/language/testdata/idusage.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/language/testdata/idusage.qbs')
-rw-r--r--tests/auto/language/testdata/idusage.qbs5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/auto/language/testdata/idusage.qbs b/tests/auto/language/testdata/idusage.qbs
index 42dc43ad5..6677c3386 100644
--- a/tests/auto/language/testdata/idusage.qbs
+++ b/tests/auto/language/testdata/idusage.qbs
@@ -17,4 +17,9 @@ Project {
property int nr: product2.nr + 1
name: "product3_" + nr
}
+ DerivedProduct {
+ id: product4
+ nr: product3.nr + 1
+ name: "product4_" + nr
+ }
}