aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/badAttachedProperty.qml
blob: c3f81c8058b479c53f227385192afa2501561460 (plain)
1
2
3
4
5
6
7
8
import AttachedProperties 1.0
QtObject {
    TestType.object: Component {}

    Component.onCompleted: {
        console.log(TestType.progress) // wrong, as progress should be a property of TestType.object
    }
}