11 lines
247 B
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() }
|
||
|
}
|