Fix test fails related to QTBUG-22237
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qquickloader / data / SetSourceComponent.qml
1 import QtQuick 2.0
2
3 Item {
4     function clear() {
5         loader.sourceComponent = undefined
6     }
7     Component { id: comp; Rectangle { width: 100; height: 50 } }
8     Loader { id: loader; sourceComponent: comp }
9 }