aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/typeWrapperToVariant.qml
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2019-04-29 07:48:59 +0000
committerThe Qt Project <gerrit-noreply@qt-project.org>2019-04-29 08:34:50 +0000
commit9c25df6dd0412d0e4211370843d8cbb8aef1e512 (patch)
tree61919135b33113cf94753608b221758f95a8ce77 /tests/auto/qml/qqmllanguage/data/typeWrapperToVariant.qml
parent0ca32eb4c57ba43b64cfc74c0fbd1c63706952c2 (diff)
parent23f988fe48f3f3c63e8311c31ed09394702089d2 (diff)
Merge "Merge remote-tracking branch 'origin/5.13' into dev" into refs/staging/dev
Diffstat (limited to 'tests/auto/qml/qqmllanguage/data/typeWrapperToVariant.qml')
-rw-r--r--tests/auto/qml/qqmllanguage/data/typeWrapperToVariant.qml15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/auto/qml/qqmllanguage/data/typeWrapperToVariant.qml b/tests/auto/qml/qqmllanguage/data/typeWrapperToVariant.qml
new file mode 100644
index 0000000000..8a1535ff50
--- /dev/null
+++ b/tests/auto/qml/qqmllanguage/data/typeWrapperToVariant.qml
@@ -0,0 +1,15 @@
+import QtQml 2.0
+
+QtObject {
+ id: root
+
+ property QtObject target: QtObject {
+ Component.onCompleted: {
+ root.connections.target = root.target.Component
+ }
+ }
+
+ property Connections connections: Connections {
+ ignoreUnknownSignals: true
+ }
+}