Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / bindingLoop.qml
1 import Qt.test 1.0
2
3 MyQmlContainer { 
4     children : [ 
5         MyQmlObject { 
6             id: object1 
7             stringProperty: "hello" + object2.stringProperty 
8         },
9         MyQmlObject { 
10             id: object2 
11             stringProperty: "hello" + object1.stringProperty 
12         } 
13     ] 
14 }