summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/shutdownErrors.qml
blob: 5a1963910df09f6613f1f02b6599ae2b8a125da0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Qt 4.6

Item {
    property int test: myObject.object.a

    Item {
        id: myObject
        property QtObject object;
        object: QtObject {
            property int a: 10
        }
    }
}