1 import Qt 4.7
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