summaryrefslogtreecommitdiff
path: root/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.2.qml
blob: a36b4c084942486382c90b6e87e2c1f0700180d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Qt 4.7

QtObject {
    id: root

    property variant a: 10
    property int x: 10
    property int test: a.x

    Component.onCompleted: {
        a = 11;
        a = root;
    }
}