Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativelanguage / data / inlineQmlComponents.qml
1 import Test 1.0
2 import QtQuick 1.0
3 MyContainer {
4     Component {
5         id: myComponent
6         MyQmlObject {
7             value: 11
8         }
9     }
10 }