aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickloader/data/initialPropertyValues.error.3.qml
blob: c862007402c7cb1e0927a9bb2d1136655d42a3c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0

Item {
    id: root

    Loader {
        id: loader
        objectName: "loader"
    }

    Component.onCompleted: {
        loader.setSource("InvalidSourceComponent.qml", {"canary":3});
    }
}