aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlconnections/data/functions/connection-unknownsignals.qml
blob: a198a724d0d0799f130026ed0b49eaf2a74e1137 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQml 2.0

QtObject {
    id: screen

    property Connections c1: Connections {
        objectName: "connections"
        target: screen
        function onFooBar() {}
    }
}