- 
    Bug 
- 
    Resolution: Won't Do
- 
    P3: Somewhat important 
- 
    6.2.12, 6.5.5, 6.5.6, 6.6.3, 6.7.1, 6.8
- 
    None
Define inline Component with type that contains QML modules/types which are not available at runtime will cause application to fail to start.
Actually no need even to involve Loader but example shows how one would like to implement code and how this issue forces it to be solved.
    Main.qml
    
    ...
    
    Component {
        id: fooComponent
        Foo {
            color: root.rectColor
        }
    }
    
    ...
    
    Foo.qml
    
    import QtQuick
    import FooModule
    
    Rectangle {
        id: root
        anchors.fill: parent
    }