Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / bug.1.qml
1 import QtQuick 1.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 }