aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/bindingLoopEagerLazy.qml
blob: aabd41e61c83bf59c99d7c089075bbcd5e3f03f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import test
import QtQml

QtObject {
    property BindingLoop a: BindingLoop {
        value: b.eager1+1
    }

    property BindingLoop b: BindingLoop {
        eager1: a.value+1
    }
}