aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/excessiveParameters.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmlcppcodegen/data/excessiveParameters.qml')
-rw-r--r--tests/auto/qml/qmlcppcodegen/data/excessiveParameters.qml14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/auto/qml/qmlcppcodegen/data/excessiveParameters.qml b/tests/auto/qml/qmlcppcodegen/data/excessiveParameters.qml
new file mode 100644
index 0000000000..1b801d4d02
--- /dev/null
+++ b/tests/auto/qml/qmlcppcodegen/data/excessiveParameters.qml
@@ -0,0 +1,14 @@
+import QtQml
+
+QtObject {
+ id: root
+ signal testSignal(string a, int b, string c, bool d, bool e, real f, real g, bool h, int i, int j, string k, int l, string m, string n)
+ signal foo()
+ onTestSignal: foo()
+
+ property Timer timer: Timer {
+ interval: 10
+ running: true
+ onTriggered: root.testSignal("a", 1, "b", true, true, 0.1, 0.1, true, 1, 1, "a", 1, "a", "a")
+ }
+}