aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmltc/QmltcTests/Connections.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmltc/QmltcTests/Connections.qml')
-rw-r--r--tests/auto/qml/qmltc/QmltcTests/Connections.qml12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/qml/qmltc/QmltcTests/Connections.qml b/tests/auto/qml/qmltc/QmltcTests/Connections.qml
new file mode 100644
index 0000000000..d7fc0d87c6
--- /dev/null
+++ b/tests/auto/qml/qmltc/QmltcTests/Connections.qml
@@ -0,0 +1,12 @@
+import QtQuick
+
+Rectangle {
+ property string hello
+
+ id: root
+
+ Connections {
+ target: root
+ function onHelloChanged(argument) {}
+ }
+}