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

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

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