aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/optionalChainingCall.qml
blob: fe9716293d1ca50e0b1a2c8859c3f60c01025776 (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 2.0

MouseArea {
     id: ma
     function f() {}
     onClicked: {
         f?.()
     }
}