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

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