1 import Qt 4.7
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