aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmltc/QmltcTests/repeaterCrash.qml
blob: 7c4dad5a4e59a5e55a24f64a36b01f1f3cf3fa7b (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 WITH Qt-GPL-exception-1.0

import QtQuick

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

    Repeater {
        model: 4

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

    Item {
        property string objName: "Child6"
    }
}