aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/transientErrors.2.qml
blob: c44acf4fd1fe26d0e889a96a24a9dc0c3ed59a2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0

QtObject {
    id: root

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

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