QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeexpression / data / scriptString.qml
1 import QtQuick 2.0
2 import Test 1.0
3
4 TestObject {
5     property int value1: 10
6     property int value2: 5
7     scriptString: value1 + value2
8     scriptStringError: value3 * 5
9 }