summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CommandLine/trace-json-v1-nested/CMakeLists.txt
blob: 089a960c2e755128804741d2c4047f184bdb1bf0 (plain)
1
2
3
4
5
6
7
8
9
function(f)
    message(STATUS "nested global_frame")
endfunction()

function(g)
    f()
endfunction()

g()