aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcompiler_manual/data/propertyReturningFunction.qml
blob: a8472c33321a2df76e327a66dfe6700b3034d600 (plain)
1
2
3
4
5
6
7
8
import QtQml 2.0

QtObject {
    property int counter: 0
    property var f: function() {
        counter++;
    }
}