aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/singletontype/qobjectSingletonTypeCaching.qml
blob: 03f07db290a2b583886c2c0f79e050a0f441cc0f (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.0

import Qt.test 1.0 as QtTest                                      // singleton Type installed into existing uri
import Qt.test.qobjectApiParented 1.0 as QtTestParentedQObjectApi // qobject (with parent) singleton Type installed into a new uri

QtObject {
    property int existingUriTest: QtTest.QObject.qobjectTestProperty
    property int qobjectParentedTest: QtTestParentedQObjectApi.QObject.qobjectTestProperty
}