summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlbindengine/bindingLoop.txt
blob: e27a76c96ee90b416ba2c98e85110ecea6174d14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
MyQmlContainer { 
    children : [ 
        MyQmlObject { 
            id: Object1 
            stringProperty: "hello" + Object2.stringProperty 
        },
        MyQmlObject { 
            id: Object2 
            stringProperty: "hello" + Object1.stringProperty 
        } 
    ] 
}