Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / transientErrors.2.qml
1 import QtQuick 1.0
2
3 QtObject {
4     id: root
5
6     property variant a: 10
7     property int x: 10
8     property int test: a.x
9
10     Component.onCompleted: {
11         a = 11;
12         a = root;
13     }
14 }