aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmlls/utils/data/completions/missingRHS.qml
blob: 1423f5c17ec538d3ea04f3e1b61a883836cf5f9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

 import QtQuick

 Item {
    id: root
    property int good
    Item {
        property int bad
        function f() {
            return root.
        }
        property int boom: root.
        Item {
            property int helloSubItem
        }
    }
}