aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/tooManySignalParameters.qml
blob: f5d5977a992635f75e3603886663d8a6d0253cd3 (plain)
1
2
3
4
5
6
7
8
import QtQml
QtObject {
    signal sig(string arg, int argarg)
    onSig: function(arg, b, c, d) {
        print("SIG", arg, b, c, d);
    }
}