Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / ScopeObject.qml
1 import QtQuick 1.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