Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / jsObject.qml
1 import QtQuick 1.0
2
3 QtObject {
4     property int test
5
6     Component.onCompleted: {
7         var o = new Object;
8         o.test = 92;
9         test = o.test;
10     }
11 }
12