summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.2.qml
blob: 1e5afdf54a809017855b599ef226fdc885558725 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 1.0

QtObject {
    id: root

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

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