aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2020-06-23 16:06:58 +0200
committerUlf Hermann <ulf.hermann@qt.io>2020-06-26 10:18:22 +0000
commit6d8aca544ccb1e2624a679e2d65622461f643291 (patch)
tree67f48176a84670594ef359ce02b4ef129bf3187b /tests/auto/qml/qmllint/data
parentd4feac29e3a3f6f3c9eb320553cd926fef1c536e (diff)
qmllint: Resolve enums from parent types
Fixes: QTBUG-85185 Fixes: QTBUG-84036 Change-Id: If0989a85df93903fee6cb146a515cd362160ff49 Reviewed-by: Evgeniy Dushistov <dushistov@mail.ru> Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'tests/auto/qml/qmllint/data')
-rw-r--r--tests/auto/qml/qmllint/data/parentEnum.qml7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/auto/qml/qmllint/data/parentEnum.qml b/tests/auto/qml/qmllint/data/parentEnum.qml
new file mode 100644
index 0000000000..313760f59a
--- /dev/null
+++ b/tests/auto/qml/qmllint/data/parentEnum.qml
@@ -0,0 +1,7 @@
+import QtQuick
+
+Item {
+ width: 640
+ height: 480
+ property int t: PointerDevice.Position
+}