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

12 lines
185 B
QML

pragma Strict
import QtQml
QtObject {
property QtObject warned
function f(arg: QtObject) { warned = arg }
function warn() { f(this) }
Component.onCompleted: warn()
}