aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmltc_qprocess/data/SingletonThing.qml
diff options
context:
space:
mode:
authorAndrei Golubev <andrei.golubev@qt.io>2022-02-07 13:57:22 +0100
committerAndrei Golubev <andrei.golubev@qt.io>2022-02-14 18:05:06 +0100
commit116ba6f3846569359450424b66f8786ec00ed7cd (patch)
tree0c4a8e5109351f8b500843a87ff565a49617bf14 /tests/auto/qml/qmltc_qprocess/data/SingletonThing.qml
parent4728efae2c6b7f2f0beae5773472af1817649aaa (diff)
qmltc: Explicitly unsupport singleton types
Change-Id: I05525f884f239c954527f24ad8842b108b32aff1 Reviewed-by: Maximilian Goldstein <max.goldstein@qt.io> (cherry picked from commit 121457933dfa40de188063fefe86fa78881e18cd) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'tests/auto/qml/qmltc_qprocess/data/SingletonThing.qml')
-rw-r--r--tests/auto/qml/qmltc_qprocess/data/SingletonThing.qml7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/auto/qml/qmltc_qprocess/data/SingletonThing.qml b/tests/auto/qml/qmltc_qprocess/data/SingletonThing.qml
new file mode 100644
index 0000000000..599b54eddd
--- /dev/null
+++ b/tests/auto/qml/qmltc_qprocess/data/SingletonThing.qml
@@ -0,0 +1,7 @@
+pragma Singleton
+import QtQml
+
+QtObject {
+ property int integerProperty: 42
+ property string stringProperty: "hello"
+}