qtdeclarative/tests/auto/qml/qmlcppcodegen/data/exceptionFromInner.qml

11 lines
247 B
QML

pragma Strict
import QtQml
QtObject {
property QtObject theNull: null
function doFail() : string { return theNull.objectName }
function delegateFail() : string { doFail() }
function disbelieveFail() : string { delegateFail() }
}