aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/assignComponentToWrongType.qml
blob: 2159bf8116d3a41cf749ecd26972a20e620207e3 (plain)
1
2
3
4
5
6
7
8
9
import QtQml 2.9

QtObject {
    property Timer stuff: Component {
        QtObject {
            objectName: "wrong"
        }
    }
}