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

Item {
    property int first: One.qobjectTestWritableProperty
    property int second: Two.twoTestProperty

    Component.onCompleted: {
        One.qobjectTestWritableProperty = 35;
    }
}