Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativelanguage / data / defaultPropertyListOrder.qml
1 import Test 1.0
2 import QtQuick 1.0
3
4 MyContainer {
5     QtObject {
6         property int index: 0
7     }
8
9     QtObject {
10         property int index: 1
11     }
12
13     children: [
14         QtObject {
15             property int index: 2
16         }, 
17         QtObject {
18             property int index: 3
19         } 
20     ]
21
22     QtObject {
23         property int index: 4
24     }
25
26     QtObject {
27         property int index: 5
28     }
29 }