aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/findMemberPrint.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmllint/data/findMemberPrint.qml')
-rw-r--r--tests/auto/qml/qmllint/data/findMemberPrint.qml13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/auto/qml/qmllint/data/findMemberPrint.qml b/tests/auto/qml/qmllint/data/findMemberPrint.qml
new file mode 100644
index 0000000000..69146eb06b
--- /dev/null
+++ b/tests/auto/qml/qmllint/data/findMemberPrint.qml
@@ -0,0 +1,13 @@
+import QtQml
+
+import TestTypes
+
+QtObject {
+ property var foooooooo: Foo {
+ id: foo
+ }
+
+ function f(): void {
+ foo.print()
+ }
+}