aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/badScriptBinding.attachedSignalHandler.qml
blob: 56d89a81da78f3b79900f027a3e7e2a39990f609 (plain)
1
2
3
4
5
6
7
import QtQuick
Rectangle {
    Keys.onBogusSignal: function(event) {
        // the handler is good, but the signal doesn't exist
        console.log(event);
    }
}