summary refs log tree commit diff stats
path: root/tests/ccgbugs/t7079.nim
Commit message (Expand)AuthorAgeFilesLines
* Fixes codegen bug with literal negative zero, fixes #7079 (#7158)GULPF2018-01-311-0/+9
Andreas Rumpf <rumpf_a@web.de> 2017-07-25 09:28:23 +0200 Remove expr/stmt (#5857)' href='/ahoang/Nim/commit/tests/showoff/thtml1.nim?h=devel&id=000b8afd26fa16684a116d9afe798ea94df9c270'>000b8afd2 ^
9ab1a3c72 ^
e80465dac ^
9ab1a3c72 ^



1
2
3
4
5
6
7
8
9
10
11



                
                                
                                                
 



             
discard """
  output: "<br>"
"""

template htmlTag(tag: untyped) =
  proc tag(): string = "<" & astToStr(tag) & ">"

htmlTag(br)
htmlTag(html)

echo br()