Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeloader / data / crash.qml
1 import QtQuick 1.0
2
3 Rectangle {
4     width: 400
5     height: 400
6
7     function setLoaderSource() {
8         myLoader.source = "GreenRect.qml"
9     }
10
11     Loader {
12         id: myLoader
13     }
14 }