aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/qml/librarymetrics_performance/data/item.20.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmarks/qml/librarymetrics_performance/data/item.20.qml')
-rw-r--r--tests/benchmarks/qml/librarymetrics_performance/data/item.20.qml12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/benchmarks/qml/librarymetrics_performance/data/item.20.qml b/tests/benchmarks/qml/librarymetrics_performance/data/item.20.qml
new file mode 100644
index 0000000000..9b1bd56fe1
--- /dev/null
+++ b/tests/benchmarks/qml/librarymetrics_performance/data/item.20.qml
@@ -0,0 +1,12 @@
+import QtQuick 2.0
+
+Item {
+ Item {
+ id: c1
+ function someFunc() { return 42; }
+ property int b: someFunc()
+ }
+ property alias c1bAlias: c1.b
+
+ property int a: c1bAlias * 5
+}