Fix test fails related to QTBUG-22237
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qsgloader / data / asynchronous.qml
1 import QtQuick 2.0
2
3 Rectangle {
4     width: 400; height: 400
5
6     property string comp
7     function loadComponent() {
8         loader.source = comp
9     }
10
11     Loader {
12         id: loader
13         objectName: "loader"
14         asynchronous: true
15     }
16 }