summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/Syntax/OneLetter.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/RunCMake/Syntax/OneLetter.cmake')
-rw-r--r--Tests/RunCMake/Syntax/OneLetter.cmake7
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/RunCMake/Syntax/OneLetter.cmake b/Tests/RunCMake/Syntax/OneLetter.cmake
new file mode 100644
index 0000000..3c341fa
--- /dev/null
+++ b/Tests/RunCMake/Syntax/OneLetter.cmake
@@ -0,0 +1,7 @@
+function(f)
+ g(${ARGN})
+endfunction()
+macro(g)
+ message(${ARGN})
+endmacro()
+f(message)