diff options
Diffstat (limited to 'tests/run/tmacros1.nim')
-rwxr-xr-x | tests/run/tmacros1.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run/tmacros1.nim b/tests/run/tmacros1.nim index a1bb29823..b2fb7240d 100755 --- a/tests/run/tmacros1.nim +++ b/tests/run/tmacros1.nim @@ -5,7 +5,7 @@ discard """ import macros, strutils -macro outterMacro*(n: stmt): stmt = +macro outterMacro*(n: stmt): stmt {.immediate.} = let n = callsite() var j : string = "hi" proc innerProc(i: int): string = |