aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/jsimport/testImportSingletonType.qml
blob: f817fbf135734af9ac05e960e1e69f5a071acb0a (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.0
import "importSingletonType.js" as Script

Item {
    property variant testValue: 5

    Component.onCompleted: {
        testValue = Script.testFunc();
    }
}