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

Item {
    id: root

    Binding {
        target: root
        property: "unknown"
        value: 42
        when: false
    }
}