aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest5.qml
blob: ba8a396164fcfa4a59a46979f06d753751472ccd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import QtQuick 2.0

Item {
    property alias p1: obj.p1
    property alias p2: obj.p2
    property alias p3: obj.p3
    property alias p4: obj.p4

    QtObject {
        id: obj
        property int p1: 1
        property real p2: 1
        property bool p3: true
        property string p4: "foo"
    }
}