aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/signal.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmlcppcodegen/data/signal.qml')
-rw-r--r--tests/auto/qml/qmlcppcodegen/data/signal.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/auto/qml/qmlcppcodegen/data/signal.qml b/tests/auto/qml/qmlcppcodegen/data/signal.qml
new file mode 100644
index 0000000000..a40020dff5
--- /dev/null
+++ b/tests/auto/qml/qmlcppcodegen/data/signal.qml
@@ -0,0 +1,6 @@
+import QtQml
+
+QtObject {
+ property int ff: 4
+ onObjectNameChanged: ff = 12
+}