aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmlls/utils/data/resolveExpressionType/BaseType.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qmlls/utils/data/resolveExpressionType/BaseType.qml')
-rw-r--r--tests/auto/qmlls/utils/data/resolveExpressionType/BaseType.qml12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/qmlls/utils/data/resolveExpressionType/BaseType.qml b/tests/auto/qmlls/utils/data/resolveExpressionType/BaseType.qml
new file mode 100644
index 0000000000..210f55519d
--- /dev/null
+++ b/tests/auto/qmlls/utils/data/resolveExpressionType/BaseType.qml
@@ -0,0 +1,12 @@
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+import QtQuick
+
+Item {
+ function helloMethod() {}
+ property int helloProperty
+ signal helloSignal
+ enum HelloEnum { HelloEnumValue1, HelloEnumValue2, HelloEnumValue3 }
+ property font helloFont
+}