aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/consoleTrace.qml
blob: a80af89ddd9a09f8073c4334b1be43655d4cd8a0 (plain)
1
2
3
4
5
6
7
8
import QtQml

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