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

9 lines
145 B
QML

import QtQml
QtObject {
function a() { b() }
function b() { c() }
function c() { console.trace() }
Component.onCompleted: a()
}