summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlecmascript/data/bindingLoop.qml
blob: 8b22dd126e325e6a79333d9ccc28c3d82a934fd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Qt.test 1.0

MyQmlContainer { 
    children : [ 
        MyQmlObject { 
            id: Object1 
            stringProperty: "hello" + Object2.stringProperty 
        },
        MyQmlObject { 
            id: Object2 
            stringProperty: "hello" + Object1.stringProperty 
        } 
    ] 
}