aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickitem2/data/nonexistentPropertyConnection.qml
blob: ed0632a68ae9d381bb92ae8bf03990a7f75a4e87 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.4

Item {
    function hint() {
    }

    Connections {
        target: BlaBlaBla
        onHint: hint();
    }
}