aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlproperty/data/propertyStartsWithOn.qml
blob: 0ced54a9caa83ba1aa93cb31345039daf4b0b613 (plain)
1
2
3
4
5
6
7
8
9
import QtQml

QtObject {
    id: root
    property int onlineStatus
    property Binding b: Binding {
        root.onlineStatus: 12
    }
}