aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/shadowedPrimitiveCmpEqNull.qml
blob: 0e130b9afc0a64f82a78fde1936a7d97ae6b8379 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick

QtObject {
    id: win

    component Foo: QtObject {
        property int progress: 0
    }

    property int progress: 0
    readonly property Foo configuring: Foo {}

    Component.onCompleted: {
        win.configuring.progress = win?.progress ?? 0
     }
}