aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/singletontype/qobjectSingletonTypeNoQualifier.qml
blob: 50a356568e1f32feb96a2b6243b10b6b4e451e27 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0
import Qt.test 1.0

QtObject {
    property int qobjectPropertyTest: QObject.qobjectTestProperty
    property int qobjectMethodTest: 2

    Component.onCompleted: {
        qobjectMethodTest = QObject.qobjectTestMethod();
    }
}