aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/qmldirImportAndDepend/good.qml
blob: 275b53184531da3c893430b53ee28f6b3f6e9872 (plain)
1
2
3
4
5
6
7
8
9
10
import Things

QtObject {
    objectName: "QtQml was imported from Things/qmldir"

    ItemDerived {
        objectName: "QQuickItem is depended upon and we know its properties"
        x: 4
    }
}