aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickloader/data/initialPropertyValues.error.1.qml
blob: f324dbddac6ddc09874a33491ec7fb247993c02c (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("InitialPropertyValuesComponent.qml", 3); // invalid initial properties object
    }
}