aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/v4/data/moduleApi.qml
blob: 9f3bf0ca8c8f8eb6be6d3e8ab1c06e720cf21228 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Qt.test 1.0 as ModApi
import QtQuick 2.0

Item {
    property int testProp: ModApi.ip
    property int testProp2: 2

    function getRandom() {
        testProp2 = ModApi.random();
        // testProp should also have changed.
    }
}