QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlqt / data / point.qml
1 import QtQuick 2.0
2
3 QtObject {
4     property variant test1: Qt.point(19, 34);
5     property variant test2: Qt.point(-3, 109.2);
6     property variant test3: Qt.point(-3);
7     property variant test4: Qt.point(-3, 109.2, 1);
8 }
9