aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/thisObject.qml
blob: 50664eced2c845ee997c9ab31301e8efb040ac9c (plain)
1
2
3
4
5
6
7
8
9
10
11
pragma Strict
import QtQml

QtObject {
    property QtObject warned

    function f(arg: QtObject) { warned = arg }
    function warn() { f(this) }

    Component.onCompleted: warn()
}