summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/Syntax/OneLetter.cmake
blob: 3c341fab02c7a44e03e35ad6c6a61d47df424363 (plain)
1
2
3
4
5
6
7
function(f)
  g(${ARGN})
endfunction()
macro(g)
  message(${ARGN})
endmacro()
f(message)