1 import Test 1.0
2 import Qt 4.7
3
4 QtObject {
5 property alias obj : otherObj
6 property variant child
7 child: QtObject {
8 id: otherObj
9 property int myValue: 10
10 }
11 }
12