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

Item {
    property bool success: false

    BaseComponent {
        id: foo
        property Text baz: Text { width: 200 }
    }

    Component.onCompleted: success = (foo.bar == '200')
}