aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlbinding/data/readonlyProperty.qml
blob: fa8d93d355df2448b7778a5ed0cdd45703de331f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0

Item {
    id: root

    readonly property string name: "John"

    Binding {
        target: root
        property: "name"
        value: "Doe"
    }
}