Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / bug.1.qml
1 import QtQuick 2.0
2
3 QtObject {
4     property int a: 10
5     property bool b: false
6
7     property int test
8
9     test: ((a == 10)?(a + 1):0) + ((b == true)?9:3)
10 }