aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/importJs.6.qml
blob: 6c4eb89551028187f6e548440789640646259757 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import com.nokia.VersionedOnlyJsModule 9.0
import com.nokia.VersionedOnlyJsModule 9.0
import QtQuick 2.0

Item {
    property bool test: false

    Component.onCompleted: {
        test = ((SomeAPI.greeting() == "Hey hey hey") &&
                (SomeAPI.major == 9) &&
                (SomeAPI.minor == 0))
    }
}