aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/functionParameterTypes.qml
blob: 26931a4f10d8f4b0579ad738f39ddcee629543e8 (plain)
1
2
3
4
5
6
7
import QtQuick 2.0 as QQ
import QtQml 2.0 as Core
QQ.Item {
    id: root
    function returnItem() : Core.QtObject { return root; }
    function takeString(arg: string) { return arg; }
}