aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/jsObject.qml
blob: 4223c25f313fc8290f17947d63de7c6ea134055b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0

QtObject {
    property int test

    Component.onCompleted: {
        var o = new Object;
        o.test = 92;
        test = o.test;
    }
}