aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/fallbackBindings.4.qml
blob: b7bd294c9fc12deff58ad8ea5ef4c3852014fc55 (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 2.0
import Qt.test.fallbackBindingsDerived 1.0 as ModuleAPI

Item {
    property bool success: false
    property string foo: ModuleAPI.test

    Component.onCompleted: success = (foo == 'hello')
}