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

import QtQuick

QtObject {
    id: root
    property int good
    property var i: Item {
       property int bad
       property int myP: root.
       Item { }
       property int myP2: root.;
       bad: 43
       function f() {
           root.;
           for (;;) {}
       }
   }
}