Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / ScopeObject.qml
1 import QtQuick 2.0
2
3 Item {
4     property int a: 3
5     property int binding: myFunction();
6     property int binding2: myCompFunction();
7
8     function myCompFunction() {
9         return a;
10     }
11 }
12