1f9816f6660634b9a0911fa967d9749509facbe5
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativevaluetypes / data / returnValues.qml
1 import Test 1.0
2 import QtQuick 2.0
3
4 MyTypeObject {
5     property bool test1: false;
6     property bool test2: false;
7
8     Component.onCompleted: {
9         var a = method();
10
11         test1 = (a.width == 13)
12         test2 = (a.height == 14)
13
14         size = a;
15     }
16 }
17