aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/functionAssignment.1.qml
blob: 0b1b45b41b6ad56a82c057605a467ee965c54873 (plain)
1
2
3
4
5
6
7
import Qt.test 1.0

MyQmlObject {
    property variant a: function myFunction() { return 2; }
    property variant b: Qt.binding(function() { return 2; })
    property var c: Qt.binding(function() { return 2; })
}