aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmldom/domdata/domitem/unaryExpressions/postIncrement.qml
blob: 30b4da8c8f6604c51d7b9d29a0d3c2f47d0eed4d (plain)
1
2
3
4
5
6
7
import QtQuick 2.15

Item {
    function f(a) {
        a++;
    }
}