Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / transientErrors.qml
1 import QtQuick 2.0
2
3 QtObject {
4     property variant obj: nested
5
6     property variant obj2
7     obj2: NestedTypeTransientErrors {
8         id: nested
9     }
10 }