aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlparser/data/typeannotations/qmlfunction.qml
blob: cd5c1f51e5183a518aaa568ed0c69cbeeeb6f090 (plain)
1
2
3
4
5
6
import QtQuick 2.12 as MyQuick
MyQuick.Item {
    function factory(param: string) : MyQuick.Item {
        return this
    }
}