aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/RequiredListProperties.qml
diff options
context:
space:
mode:
authorFabian Kosmale <fabian.kosmale@qt.io>2020-07-24 08:34:18 +0200
committerFabian Kosmale <fabian.kosmale@qt.io>2020-07-28 19:20:53 +0200
commit9ab1a6759018b78b0f160c5286f8b0235a34ec50 (patch)
tree527dbcef8ad883483cdfc511bdee6a432a8c232d /tests/auto/qml/qqmllanguage/data/RequiredListProperties.qml
parent4225411b7fceffa87e2e5bbba5dc725cbaba20e5 (diff)
Support required list properties
The corresponding rules were missing so far. Fixes: QTBUG-85716 Change-Id: Ic97546ea2e574f694a96d974ee355ac84f8650b5 Reviewed-by: Fawzi Mohamed <fawzi.mohamed@qt.io>
Diffstat (limited to 'tests/auto/qml/qqmllanguage/data/RequiredListProperties.qml')
-rw-r--r--tests/auto/qml/qqmllanguage/data/RequiredListProperties.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/auto/qml/qqmllanguage/data/RequiredListProperties.qml b/tests/auto/qml/qqmllanguage/data/RequiredListProperties.qml
new file mode 100644
index 0000000000..03cf1ad7ef
--- /dev/null
+++ b/tests/auto/qml/qqmllanguage/data/RequiredListProperties.qml
@@ -0,0 +1,6 @@
+import QtQuick 2.15
+
+Item {
+ required property list<Item> listA
+ default required property list<Rectangle> listDefault
+}