aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/noDoubleEvaluationForFlushedBindings.qml
blob: 0eb5e03642ff2264f5ba51e744867e8c78cba4f8 (plain)
1
2
3
4
5
6
7
8
9
import QtQml 2.0

QtObject {
    property int firstVar: secondVar + 1
    property int secondVar: {
        stats.increaseEvaluationCounter()
        return 1
    }
}