aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/v4/data/singletonType.qml
blob: 3fcbcae64d64366ba4dfc46e5f675b7fbb4c4dfc (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.V4.ip
    property int testProp2: 2

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