aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/qtbug60547/TestObject.qml
blob: 5f022f605a9bc386d1e1667c154ad87af2b000f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0
import "components"

QtObject {
    id: root
    property int counter
    function increment() {
        counter++
        return counter
    }
}