summaryrefslogtreecommitdiff
path: root/tests/auto/qml/qmlcppcodegen/data/exceptionFromInner.qml
blob: 13855356f2a6474e0acd9e96b69253aae6c2490a (plain)
1
2
3
4
5
6
7
8
9
10
pragma Strict
import QtQml

QtObject {
    property QtObject theNull: null

    function doFail() : string { return theNull.objectName }
    function delegateFail() : string { doFail() }
    function disbelieveFail() : string { delegateFail() }
}