QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlvaluetypes / data / varAssignment.qml
1 import QtQuick 2.0
2
3 QtObject {
4     property int x;
5     property int y;
6     property int z;
7
8     Component.onCompleted: {
9         var vec3 = Qt.vector3d(1, 2, 3);
10         x = vec3.x;
11         y = vec3.y;
12         z = vec3.z;
13     }
14 }