summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlecmascript/data/shutdownErrors.qml
blob: 398489a15b21035f130994a0d19c3894c61b9708 (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 Object object;
        object: Object {
            property int a: 10
        }
    }
}