aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmltc_qprocess/data/invalidTypeAnnotation.qml
blob: fb8c8eb198f91c7cd6644a11aae1b2483b4af5e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick


Item {
    function f(): Qt.point {

    }

    function g() {

    }

    function h(a: int, b: Item) {

    }

    function alpha(a: int, b) {}
    function beta(a: int, b): Item {}
    function gamma(a: Qt.point, b) {}
}