aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmltc/QmltcTests/repeaterCrash.qml
blob: d4eb72786b0efbaed62e176ca8fd924979e210cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick

Item {
    Item {
        property string objName: "Child1"
    }

    Repeater {
        model: 4

        Item {
            property string objName: "Child" + (index + 1)
        }
    }

    Item {
        property string objName: "Child6"
    }
}