diff options
author | metagn <metagngn@gmail.com> | 2022-08-23 22:41:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-23 21:41:30 +0200 |
commit | d1d141b135a605f81935e89322549013e5be3863 (patch) | |
tree | 27d0552df431ffa940ba8f66dc4be5507de2ad8d /tests/parser | |
parent | 14656154efa2b3f08a341742c697fd1064f40166 (diff) | |
download | Nim-d1d141b135a605f81935e89322549013e5be3863.tar.gz |
new .redefine pragma for templates, warn on redefinition without it (#20211)
* test CI for template redefinitions * adapt asyncmacro * fix quote * fix again * try something else * revert * fix ioselectors_select, disable packages CI * adapt more tests & simplify * more * more * more * rename to redefine, warn on implicit redefinition * basic documentation [skip ci] * Update compiler/lineinfos.nim Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com> Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com>
Diffstat (limited to 'tests/parser')
-rw-r--r-- | tests/parser/tstmtlists.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/parser/tstmtlists.nim b/tests/parser/tstmtlists.nim index fa47ba364..158c93340 100644 --- a/tests/parser/tstmtlists.nim +++ b/tests/parser/tstmtlists.nim @@ -158,7 +158,7 @@ template dim2: int = else: int.high) -template dim: int = +template dim3: int = ( if int.high == 0: int.high |