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

16 lines
211 B
QML

pragma Strict
import QtQml
QtObject {
id: self
property var thing: self
function doThing() : bool {
if (self.thing)
return true;
else
return false;
}
}