aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/SelfReference.qml
blob: 129a171d77d0a717122eeb494b5f732d32fe302c (plain)
1
2
3
4
5
6
7
8
import QtQml 2.0
QtObject {
    property SelfReference self
    signal blah(selfParam: SelfReference)
    function returnSelf() : SelfReference {
        return this;
    }
}