aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/corpseInQmlList.qml
blob: dc0e145064a06cca54d048ffbd29dff90720e154 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQml

QtObject {
    property var b;

    function returnList(a: QtObject) : list<QtObject> {
        return [a]
    }

    function setB(a: QtObject) {
        b = { b: returnList(a) }
    }
}