aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmlls/utils/data/resolveExpressionType/BindingsOnDeferred.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qmlls/utils/data/resolveExpressionType/BindingsOnDeferred.qml')
-rw-r--r--tests/auto/qmlls/utils/data/resolveExpressionType/BindingsOnDeferred.qml19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/auto/qmlls/utils/data/resolveExpressionType/BindingsOnDeferred.qml b/tests/auto/qmlls/utils/data/resolveExpressionType/BindingsOnDeferred.qml
new file mode 100644
index 0000000000..f0d82f3318
--- /dev/null
+++ b/tests/auto/qmlls/utils/data/resolveExpressionType/BindingsOnDeferred.qml
@@ -0,0 +1,19 @@
+// Copyright (C) 2024 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+import QtQuick
+import QtQuick.Controls.Basic
+
+Item {
+ property var c: Control {
+ id: inner
+
+ property var myBinding: Binding {
+ inner.background: Item {}
+
+ inner {
+ background: Item {}
+ }
+ }
+ }
+} \ No newline at end of file