Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / scope.6.qml
1 import QtQuick 2.0
2
3 Item {
4     id: me
5     property bool test: nested.runtest(me);
6
7     Scope6Nested {
8         id: nested
9     }
10 }