diff options
Diffstat (limited to 'tests/showoff/thtml1.nim')
-rw-r--r-- | tests/showoff/thtml1.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/showoff/thtml1.nim b/tests/showoff/thtml1.nim index c7a083c21..fe0cd3b1e 100644 --- a/tests/showoff/thtml1.nim +++ b/tests/showoff/thtml1.nim @@ -2,7 +2,7 @@ discard """ output: "<br>" """ -template htmlTag(tag: expr) {.immediate.} = +template htmlTag(tag: untyped) = proc tag(): string = "<" & astToStr(tag) & ">" htmlTag(br) |