aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmltc/data/deferredProperties_complex.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmltc/data/deferredProperties_complex.qml')
-rw-r--r--tests/auto/qml/qmltc/data/deferredProperties_complex.qml9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/auto/qml/qmltc/data/deferredProperties_complex.qml b/tests/auto/qml/qmltc/data/deferredProperties_complex.qml
new file mode 100644
index 0000000000..ce5429a095
--- /dev/null
+++ b/tests/auto/qml/qmltc/data/deferredProperties_complex.qml
@@ -0,0 +1,9 @@
+import QtQuick
+import QmltcTests 1.0
+TypeWithDeferredComplexProperties {
+ group.str: "still immediate"
+ group.deferred: -1
+
+ DeferredAttached.attachedFormula: Math.abs(10 * 2)
+ DeferredAttached.deferred: 100
+}