aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/accessibleId.qml
blob: 904b856320f6ab661d7c44218b2daf56d656b9f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQml

QtObject {
    id: a
    property Component c: Component {
        QtObject {
            id: a
            property QtObject o: QtObject {
                property int a: 5
                objectName: a.objectName
            }
        }
    }
}