9135e7946979344d70a572b39734f942a6b719e5
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / aliasreset / AliasPropertyComponent.qml
1 import QtQuick 2.0
2
3 Item {
4     id: apc
5     property alias sourceComponent: loader.sourceComponent
6
7     Component {
8         id: redSquare
9         Rectangle { color: "red"; width: 10; height: 10 }
10     }
11
12     Loader {
13         id: loader
14         objectName: "loader"
15         sourceComponent: redSquare
16     }
17 }